Nick Craig-Wood
Nick Craig-Wood
> Storj normally encrypts everything, right? Yes it does > Does it also encrypt S3 type storage automatially? You have to give the S3 gateway the password, but yes it...
Is there a Go library to access OCI? Writing and maintaining a backend is a lot of work! Is there any way we could extend the s3 backend to read...
@msays2000 Ok that sounds like a reasonable argument. You have my blessing to make a new backend for this :-) Follow the script here: https://github.com/rclone/rclone/blob/master/CONTRIBUTING.md#writing-a-new-backend Note that s3 isn't a...
This isn't the accepted way of doing this. The normal way is to create a zero sized object which ends in a / These are already filtered out of directory...
> Is there an example backend or other product where that method actually works? I noticed something similar in the codebase, but either i don't know how to enable it...
Ah, you mean this code https://github.com/rclone/rclone/blob/2f461f13e3efe603bdd8fb4057f3e8242a59956f/vfs/dir.go#L633-L637 This needs to do the equivalent of what happens to the file in the lines above https://github.com/rclone/rclone/blob/2f461f13e3efe603bdd8fb4057f3e8242a59956f/vfs/dir.go#L627-L632 So it needs to call an equivalent...
Maybe the first thing to do would be to see if we can get the idrive webdav working with rclone. They offer 5 GB free so it should be possible...
What does your config look like (please redact secrets) - thanks!
Great work :-) Let me know if you want help writing the tests.
There are probably two places that tests need to be added. The first is in `vfs/*_test.go` To pick an example https://github.com/rclone/rclone/blob/1107da7247db32199fde92f42c916bcb4c60dc3f/vfs/dir_test.go#L500 You can see this creates a test VFS, creates...