jhonCostaDev
New Contributor II

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