pyfilesystem
pyfilesystem copied to clipboard
Python filesystem abstraction layer
``` Steps: * Have an existing ssh config in ~/.ssh/config, referencing username and keys for different hosts. Have ssh keynames other than id_rsa or id_dsa. * sftpfs will only find...
``` Either support the password as an optional argument to the constructor (preferred) or as a setter. Looks like zipfile only supports reading encrypted files, not writing them, so you...
``` What steps will reproduce the problem? 1. Instantiate a fs.memoryfs.MemoryFS 2. Open a file from the MemoryFS instance with a write mode 3. Write a unicode string containing characters...
``` Current code is based on 0.7.0 version. It should still work but it will raise different deprecation warnings due to backward incompatible changes introduced in 1.0.0 version: https://groups.google.com/forum/?fromgroups=#!topic/pyftpdlib/DlU0N8LkS38 The...
``` fuse4x has been abandoned as documented @ http://fuse4x.github.com/ The maintainer suggests switching to osxfuse - http://osxfuse.github.com/, which is currently being maintained. osxfuse does have a compatibility option so that...
``` I am getting the following errors while using dokan:- 1. When I mount one file in a MountFS object and expose it using dokan, it works fine. But when...
``` What steps will reproduce the problem? 1.In the documentatio I found this: rename(src, dst) Renames a file or directory Parameters: src – path to rename dst – new name...
``` What steps will reproduce the problem? I use fedora 17 and checked out that the fuse mounted fileobject only got 4096 Bytes at once per write action. My Filesystem...
``` I discovered a bug when mounting an OSFS exposed over FUSE (on /mnt). A 'touch /mnt/foo' triggers this syscall: open("/mnt/foo", O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK, 0666) = -1 ENOENT (No such file or...
``` What steps will reproduce the problem? @convert_fs_errors def test(): return fs.open('/foo/bar', 'r') What is the expected output? What do you see instead? Assuming /foo/bar does not exist, This function...