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

## 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...

While building `pyfilesystem2` with development versions of Python 3.12 I discovered a regression in CPython. You can find details and reproducer [here](https://github.com/python/cpython/issues/102956). =================================== FAILURES =================================== ________________________ TestReadZipFSMem.test_seek_end ________________________ self =...

_I've a PR ready that will fix this issue, I am opening this so I can link it in the Changelog._ ## From [Python 3.12 what's new](https://docs.python.org/3.12/whatsnew/3.12.html#removed) Removed many old...

It would appear that the ZipFS simply lacks the ability to remove files. ``` with tempfile.TemporaryDirectory() as tmp_path: tmp_path = Path(tmp_path) with zipfile.ZipFile(tmp_path / "test.zip", "w") as zf: zf.writestr("1.txt", "Some...

Hi, we have plenty S3 files, some are a little larger (>100MB) and compressed (gz). We would like to avoid downloading and uncompressing the files over and over again. This...

I know that using special characters in path names is asking for trouble, but I like to prefix active projects with an exclamation mark (`!`) because it makes them show...

`WrapCachedDir` does not work correctly with case-insensitive filesystems. Should be documented or fixed... Discovered while implementing [fs.wrapcifs](https://github.com/Omniflux/fs.wrapcifs) (Python 3.11+ only) ```python >>> from fs.osfs import OSFS >>> from fs.wrap import...

Hi, while experimenting with the FS lib, I’ve encountered an unexpected `ResourceNotFound` error. The error is raised if the param `preserve_time=True` and we try to move a file on the...

## 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...

bug

I apologize if my question sounds silly but I just started using this library and can't find the answer to my question. I'm trying to copy a file from my...