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

Python 3: ``` sh $ fsinfo http://www.github.com/ fsinfo: Error - 'HTTPMessage' object has no attribute 'dict' [/] No description available ``` Python 2: ``` sh $ fsinfo2 http://www.github.com/ [/] No...

bug

The following script gives me the attached error ``` from fs.contrib.davfs import DAVFS from fs.osfs import OSFS import fs.utils source = OSFS('/tmp/bookalope') target = DAVFS('http://localhost:6080/exist/webdav/db', credentials=dict(username='admin', password='onkopedia')) print source.listdir() print...

I'm not sure if this is the correct fix, but it's at least a workaround for long UNC paths. This code: ``` uri = r'\\?\UNC\VBOXSVR\work\stuff.xex' fs, relpath = opener.parse(uri) print...

When working with FTPFS against a Gene6 FTP Server v3.8.0 (Build 34), I ran into the situation that the listings of listdir() and listdirinfo() included the parent directory and the...

see https://code.google.com/p/pyftpdlib/issues/detail?id=223

I took the liberty of re-requesting #217 without the unrelated parts.

``` What steps will reproduce the problem? 1. Mount a file system with dokan 2. Kill the process without unmounting 3. Try to mount it again. What is the expected...

Priority-Medium
Type-Defect
auto-migrated

Using DAVFS I can point the connection to a resource rather than a directory and read the resource like this: handle = DAVFS('https:/.../path/to/foo.txt') fp = handle.open('.') print fp.read() ..... Doing...

Point SFTPFS to a file instead of a directory returns improper results for isdir() ``` from fs.sftpfs import SFTPFS handle = SFTPFS('localhost', '/tmp') print handle.isdir('.') # True print handle.isfile('.') #...