You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get subfolder1 in files and not directories. I did a short debugging and it looks like that the official Microsoft AzureDLFileSystem.ls() returns "type" = "DIRECTORY", but in fsspec's AbstractFileSystem.walk()"type" = "directory" is expected. Therefore all folders are treated as files.
The text was updated successfully, but these errors were encountered:
I'm running adlfs==0.2.4 & fsspec==0.6.2 and observed the following behavior:
Given the folllowing folder structure in ADLS Gen1:
If I do a
_, directories, files = next(fs.walk('/folder'))
I get
subfolder1
infiles
and notdirectories
. I did a short debugging and it looks like that the official MicrosoftAzureDLFileSystem.ls()
returns"type" = "DIRECTORY"
, but in fsspec'sAbstractFileSystem.walk()
"type" = "directory"
is expected. Therefore all folders are treated as files.The text was updated successfully, but these errors were encountered: