pyfilesystem icon indicating copy to clipboard operation
pyfilesystem copied to clipboard

Python filesystem abstraction layer

Results 81 pyfilesystem issues
Sort by recently updated
recently updated
newest added

ZipFS: Support writing files with individual compress_type instead of always using the default set at ZipFS() instance creation time. All this patch does is pass through the additional, optional compress_type...

I’ve implemented a filesystem using pyfilesystem that works very well and can be mounted using Fuse in a Linux box. Now I need to create a network share on it...

for: `fsserve -t rpc -p 1917` and then: `fstree rpc://127.0.0.1:1917` it gives this output: ``` fstree: Error - a bytes-like object is required, not 'str' rpc://127.0.0.1:1917 ``` didn't check with...

bug

This supports alternate formats for S3 buckets

``` What steps will reproduce the problem? 1. Start using python 3 (in my case 3.4.2) 2. from fs.s3fs import S3FS 3. _s3fs = S3FS(...) 4. _s3fs.listdir('') Listdir, or pretty...

Priority-Medium
Type-Defect
auto-migrated

For networking-based filesystems, one is often interested in some kind of local cache. As far as I can see, that would be another good use case for `fs.wrapfs`, right?

enhancement

see [here](https://msdn.microsoft.com/en-us/library/windows/desktop/cc144095%28v=vs.85%29.aspx), that allows to "mount" to a virtual folder similar to e.g. Windows' libraries, without requiring a drive letter as dokan would.

enhancement

On http://pyfilesystem.org, I could not find a link to this GitHub repository. (I know, this is not really an issue with the code in this repository, but I wanted to...

Hi, FYI: all current versions of paramiko (I tested 1.15.1, 1.16.0, and 2.0.0) with Python 2.7 trigger failures in the fs testsuite: ``` [ 72s] ____________________ TestSFTPFS.test_cases_in_separate_dir____________________ [ 72s] [...

We have developed an xrootd filesystem implementation for PyFilesystem, and is wondering if it's possible to link to our implementation from the PyFilesystem documentation. Most natural would probably be to...