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
julia> mydir = FileTree("C:\\Temp\\TestData")
C:\Temp\TestData/
├─ file-179.csv
└─ file-216.csv
julia> a = FileTrees.load(mydir) do test
DataFrame(CSV.File(path(test)))
end
C:\Temp\TestData/
├─ file-179.csv (3×7 DataFrame)
└─ file-216.csv (4×7 DataFrame)
This does not :(
julia> mydir = FileTree("\\\\Network\\TestData")
\\Network\TestData/
├─ layer-179.csv
└─ layer-216.csv
julia> a = FileTrees.load(mydir) do test
DataFrame(CSV.File(path(test)))
end
This works fine
This does not :(
This is the error:
Some more information:
Thanks for any help you can provide!
A.
The text was updated successfully, but these errors were encountered: