1,714 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
64
views
FileNotFound Exception occurs when pyspark write after persist().count()
I encountered java.io.FileNotFoundException in AWS EMR batch.
My code processes data as below :
updateDF = spark.read.load(paths, ..)
userIDs = uniqueList(matchedUserIDs)
nones = [None for _ in range(...
2
votes
1
answer
90
views
FileNotFOundException on runtime
I have an old asp.net website that references a .net Framework 4.8.1 Class Library.
I wanted to use this class library in other class libraries that are going to be .net 8.0.
I decided to retarget ...
0
votes
0
answers
269
views
Error MSB4018: "GetOutOfDateItems" task failed due to missing .tlog files on first build in Visual Studio
I'm working on a C++ project in Visual Studio 2019 targeting Windows with vcpkg dependencies. I keep encountering an issue where the first build fails due to missing .tlog files, specifically a ...
0
votes
0
answers
92
views
ENOENT: no such file or directory error when deploying Next.js app on Vercel
I'm encountering the following error after deploying my Next.js app on Vercel:
[Error: ENOENT: no such file or directory, open '/var/task/problems/add-two-numbers/boilerplate-full/function.java'] { ...
0
votes
0
answers
47
views
Python,trying to run pyspark,but gives FileNotFoundError: [WinError 2]
I just trying ro run a simple code of pyspark,but alaways gave me winerror2.
from pyspark import SparkConf,SparkContext
conf = SparkConf().setMaster("local[*]").setAppName("...
0
votes
2
answers
358
views
Spring Boot: URL to file in src/main/resources not found in Docker container
I have a Spring Boot backend application which has following part in the application.properties:
token.json_file_url=${TOKEN_JSON_FILE_URL:file:src/main/resources/localdev/user-claims.json}
${...
1
vote
2
answers
249
views
Java Program Cannot Locate CSV File in IntelliJ IDEA - FileNotFoundException [duplicate]
I’m working on a character recognition project using Java and IntelliJ IDEA. My program needs to load training and testing data from CSV files, but I’m encountering a FileNotFoundException even though ...
0
votes
1
answer
460
views
Visual Studio 2022 FileNotFoundException by accessing dll without local copy
I'm using my own DLL in my projects for months without any problems. The DLL is integrated without a local copy, the DLLs are all stored in a directory from where they are integrated. The path is ...
0
votes
0
answers
52
views
How to handle FileNotFoundException in python
I have a function to read avro files(day-wise folders) from a path and write it to
same path(aggregating to month-wise folders). The function works fine if the folders have .avro files.
But I get an ...
-1
votes
1
answer
99
views
Why do I get a FileNotFoundException when the file obviously exists?
I have a piece of C# code in which I try to list some files from a directory. When listing the files I get a FileNotFoundException (which is not caught yet), but I don't understand why...
try
{...
0
votes
1
answer
375
views
FileNotFoundException: Could not load file or assembly 'System.DirectoryServices.Protocols'
I have an ASP .Net Core website which runs fine locally but receives the following error when deployed to the IIS server.
FileNotFoundException: Could not load file or assembly 'System....
-2
votes
1
answer
185
views
Why did placing my file in a try catch with a FileNotFoundException work when reading a file? [duplicate]
I got my code to work for an assignment but it doesn't help me if I don't know why it happened so I am here to try and understand by asking the community.
I am trying to read a simple text file with 3 ...
0
votes
0
answers
49
views
Error :- InvocationTargetException , FileNotFoundException: contents.json, Fragment, Kotlin
I got These Errors
FATAL EXCEPTION: main
Process: com.example.mykotlinapp, PID: 19988
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at com.android.internal.os.RuntimeInit$...
1
vote
0
answers
257
views
KivyMD - FileNotFoundError: [Errno 2] No such file or directory
I just installed KivyMD. When I try to run a simple code from "Getting Started" on kivymd page.
from kivymd.app import MDApp
from kivymd.uix.label import MDLabel
class MainApp(MDApp):
...
-1
votes
1
answer
132
views
python os module does not rename the file, even if the file exists - os.rename(src, dst)
I am trying to rename files from a directory. But for some reason which I do not know, the files are not getting renamed.
Code:
def extract_info_from_filename(file_name):
parts = file_name.split('...