FileNotFoundError: [Errno 2] No such file or directory or IsADirectoryError: [Errno 21] Is a directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2020 08:36 AM
I have been trying to open a file on the dbfs using all different combinations:
if I use the following code:
with open("/dbfs/FileStore/df/Downloadedfile.csv", 'r', newline='') as f
I get IsADirectoryError: [Errno 21] Is a directory
with open("dbfs:/FileStore/df/Downloadedfile.csv", 'r', newline='') as f
FileNotFoundError: [Errno 2] No such file or directory
- Labels:
-
Dbfs - databricks file system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2020 08:55 AM
@Ana Del Campo Mendizabal
There is a file explorer,
Use that to verify the file is where you expect it to be.
Here is a screenshot,
Basically
Click on Databricks on Left Navigation Panel,
And then Import and Explore Data in the center of the page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2020 10:15 PM
To get rid of this error you can try using Python file exists methods to check that at least python sees the file exists or not. In other words, you can make sure that the user has indeed typed a correct path for a real existing file. If the user does not pass the full path to the file, the path is interpreted relatively to the current working directory. The current working directory usually is the directory in which you started the program.

