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

``` I am using eXist-db through the WebDAV layer together with contrib.DAVFS. The WebDAV server returns a 409 status code in case when a file could not be written (for...

Priority-Medium
Type-Defect
auto-migrated

``` What steps will reproduce the problem? 1. Create MultiFS that contains two FTPFS at different paths m = multifs.MultiFS() pa = opener.opendir("ftp://ftp.a.net") pb = opener.opendir("ftp://ftp.b.net") m.addfs("a", pa) m.addfs("b", pb)...

Priority-Medium
Type-Defect
auto-migrated

``` What steps will reproduce the problem? 1. The callbacks self._on_path_modify, self._on_path_delete may be called in multiple threads -- both any thread using the filesystem as well as from the...

Priority-Medium
Type-Defect
auto-migrated

``` boto.s3.connection.Connection() supports bunch of extra options, including: * anon=True for read-only connection to public S3 shares * proxy, proxy_port etc for HTTP(S) proxy options * custom hosts, connection classes...

Priority-Medium
auto-migrated
Type-Enhancement

``` This program hangs in Python 3.4 (Windows): #!/usr/bin/env python import fs.opener with fs.opener.fsopen("a.txt") as f: for l in f: print(l) The file a.txt should exist. Runs fine on 2.7....

Priority-Medium
Type-Defect
auto-migrated

``` Using the open() method, I kept getting three variations of the same exception: Traceback (most recent call last): File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 808, in __bootstrap_inner self.run() File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 761,...

Priority-Medium
Type-Defect
auto-migrated

``` The Tahoe command allows you the "ln" (hardlink) subcommand, but there's no such method for this on the TahoeLAFS class/object. Is it not exposed via REST API? This is...

Priority-Medium
Type-Defect
auto-migrated

``` What steps will reproduce the problem? Instantiate FSError with a unicode value for msg. Cause __unicode__() to be called on the instance. What is the expected output? What do...

Priority-Medium
Type-Defect
auto-migrated

``` I have altered an MIT licensed implementation of S3 called mock-s3 to function as a pyfs expose module. I copied http.py's format to create the __init__.py. You can find...

Priority-Medium
Type-Defect
auto-migrated

``` Reporting typo ``` Original issue reported on code.google.com by `[email protected]` on 8 Jul 2014 at 6:54

Priority-Medium
Type-Defect
auto-migrated