"Transform" file name?

I apologize if this is the wrong forum section, one of my remotes cannot support the % symbol in file names.

I am wondering, with RClone, on that specific remote, if it's possible to Convert the % symbol into something else? And if I copy from that remote, to convert it back into the % Symbol?

Perhaps encoding? But I'm not really sure how that works either.

Which remote it is?

Blomp, which uses Swift.

[BRTEST]
type = swift
user = USER
auth = http://authenticate.blomp.com/v2.0/
auth_version = 2
tenant = storage
key = abc123!
endpoint_type = public

Default encoding for swift is Slash,InvalidUtf8 so you want to add to it Percent:

[BRTEST]
type = swift
user = USER
auth = http://authenticate.blomp.com/v2.0/
auth_version = 2
tenant = storage
key = abc123!
endpoint_type = public
encoding = Slash,InvalidUtf8,Percent

It will automatically convert % (hex: 25) to (hex: ef bc 85) when storing files and back when retrieving.

More details about encoding in docs.

1 Like

I apologize, I have too many Remotes and providers. This issue was for Quotaless, not Blomp. Facepalm

Quotaless uses S3, Minio - so I used the following to the end of the config
encoding = Slash,InvalidUtf8,Dot,Percent

Thank you Kapitainsky for the directions.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.