How to combine all shared drive with utf-8 character

Hi Friend,
I using rclone for mount large shared drive about 1000 shared drive.
But rclone return "_" with utf-8 character,
Can any body share a idea for show correct name of shared drive.
(I think file with utf-8 name is work good)

What is the problem you are having with rclone?

Rclone not support utf-8 name of shared drive

Run the command 'rclone version' and share the full output of the command.

rclone v1.61.0-beta.6606.1dbdc48a7

Which cloud storage system are you using? (eg Google Drive)

Google drive: Shared drive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone backend drives -o config gdrive:

thank you so much
image

Hi Vu,

I can see it is annoying in your situation, but I don't think there is any way to avoid it because:

Remote names are case sensitive, and must adhere to the following rules:

  • May only contain 0-9, A-Z, a-z, _, -, . and space.
  • May not start with - or space.

Source: https://rclone.org/docs/#valid-remote-names

Therefore rclone backend drives -o config gdrive: has to do a character conversion like this:

Any illegal characters will be substituted with "_" and duplicate names will have numbers suffixed.

Source: https://rclone.org/drive/#drives

1 Like

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