sshfs icon indicating copy to clipboard operation
sshfs copied to clipboard

sshfs - SSH/SFTP implementation for fsspec

Results 21 sshfs issues
Sort by recently updated
recently updated
newest added

I'm not able to debug this issue further, I can only share it. Some files (.zip archives) are corrupted when using: ``` ssh.get(ssh_file["name"], "/tmp/") ``` What's important is the same...

When I try to `fs.checksum(path)` on a server that does not permit a `uname` command, I get a generic `Channel Open Error: Session request failed`. Looking through the debug logs,...

I've implemented the `AbstractFileSystem` in my code in order to direct my application either to the local file system or file system over SSH. Only I noticed that the behavior...

https://discord.com/channels/485586884165107732/485596304961962003/898158835288637460

Hi All. While looking at using the `GenericFileSystem` and its `rsync` function, I've noticed a few inconsistencies that `sshfs` has with handling paths with the protocol(`sftp://`). One fix was done...

I'm not 100% sure that the title here, is accurate, as it involves a bit more understanding of what's happening under the hood with asyncssh than I have so far....

Hello, I use fsspec to have a single api to work with multiple different storage backend. I ran into some issues with the sftp implementation because the `move` method is...

Hi, due to https://github.com/ronf/asyncssh/issues/610 I'm trying to run something like: ```python fs = fsspec.filesystem(protocol="ssh", path_encoding=None, **storage_options) print(fs.ls("xxx")[:10]) ``` but path_encoding is not accepted by connect method called from asyncssh library....