-
-
Notifications
You must be signed in to change notification settings - Fork 181
Closed
Description
In the docs it says fs.path provides operations on generic pyfilesystem filepaths. However it is not available until a filesystem has been opened.
For example I want to carry out a path operation before opening a filesystem but this is not possible. Says "module fs has no attribute path". Once I open a filesystem it works fine.
import fs
fs.path
chfw