pyfilesystem2 icon indicating copy to clipboard operation
pyfilesystem2 copied to clipboard

Python's Filesystem abstraction layer

Results 123 pyfilesystem2 issues
Sort by recently updated
recently updated
newest added

Are you still maintaining this project? Is it something that we can rely on when building products?

cc: @willmcgugan @althonos @gpcimino @geoffjukes Howdy This is probably not the right form, and apologies for adding to your inboxes I wrote a little thing adding encryption to file through...

I've noticed that in FTPFS, the implementation of move comes from FS, however, when moving in FTPFS, it's too slow, especially when renaming.

- New feature Imported the [importhook](https://github.com/PyFilesystem/pyfilesystem/blob/master/fs/expose/importhook.py) from the original `PyFilesystem` project. * Code was updated to Python3 syntax * Added typing * Replaced imp with importlib (in some cases I...

Example ``` with TempFS() as temp_fs: temp_fs_sys_path = temp_fs.root_path # raises AttributeError since temp_fs is of type FS ``` To get around this you need to do: `temp_fs_root_sys_path = temp_fs.getsyspath('')`...

## Type of changes - Bug fix ## Checklist - [ ] I've run the latest [black](https://github.com/ambv/black) with default args on new code. - [ ] I've updated CHANGELOG.md and...

Pyfilesystem2 makes use of this module which got deprecated at some point. This leads to noisy DeprecationWarning's in the test suite of a project using pyfilesystem2. To reproduce: ``` >>>...

Hello, I was under the impression I can use fs.glob mostly like the standard glob library. However I wonder if it is intended that the pattern folder/**/* behaves differently between...

## Type of changes - Bug fix ## Checklist - [x] I've run the latest [black](https://github.com/ambv/black) with default args on new code. - [x] I've updated CHANGELOG.md and CONTRIBUTORS.md where...

In the MultiFS implementation thre are checks to direct any requests for writing to the correct filesystem. However, no such checks are implemented for the remove() and removedir() functions. This...