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

Is there such a thing as `fs.open_fs("https://something.com/whatever")`? Being pyfilesystem user for some time (I use it extensively for "gs://", "tar://", "temp://") I assumed it would work out of the box...

question

There's a new third party library compatible with pyfilesystem2, it's pyfatfs and it can read and write FAT12/16/32 filesystems. Repository: https://github.com/nathanhi/pyfatfs Could you please add it to the list in:...

docs

I'm trying to package your module as an rpm package. So I'm using the typical build, install and test cycle used on building packages from non-root account. - "setup.py build"...

Hi all, Referring to the blog (https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/) shared by @lurch , the proper windows file uri for: `D:\Program Files\Viewer\startup.htm` is: ``` Incorrect: file://D:\Program Files\Viewer\startup.htm Correct: file:///D:/Program%20Files/Viewer/startup.htm ``` Please notice `file:///`...

enhancement

There does not appear to be any support for creating symlinks. Many implementations can't support this usefully but unix definitely can.

enhancement

Off-topic: I came across `rclone` (https://rclone.org/) lately. `rclone` provides out-of-the-box an integration with 40 storage providers through a simple command line utility and it allows you to mount different storages...

Discussion

Hi! pyfilesystem2 is a great project, and it would be even better if some filesystems could be nested. For example: ```python from fs import openfs from fs.zipfs import ZipFS ftp_fs...

question

Hi, First of all thank you for this really good lib ! I'm hitting a small bug using MountFS: the `listdir` method doesn't take into account mounts for dir listing....

bug

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

I'm trying to create a virtual XML file, copy some content to it, then access throw parsing, it may be simple, but every path that I'm trying to use (...

question