Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2024 07:59 AM
Hi guys, I have the same problem but I found a solution. sorry about my english but i'll try to explain how to acess the files:
# First using the dbutils command to find a folder or file.
files = dbutils.fs.ls('/FileStore/')
# second copying from FileStore to folder into a cluster.
for file in files:
dbutils.fs.cp(file.path, f'file:/tmp/{file.name}')
it's done. Now you can acess the files.
files will be deleted after the cluster is shut down