What is the problem you are having with rclone?
I would like to disable unicode normalization in the configuration, i.e. enable the option –no-unicode-normalization via config.
Run the command 'rclone version' and share the full output of the command.
rclone v1.71.2
- os/version: Microsoft Windows 10 IoT Enterprise LTSC 2021 21H2 21H2 (64 bit)
- os/kernel: 10.0.19044.6456 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.25.3
- go/linking: static
- go/tags: cmount
Which cloud storage system are you using? (eg Google Drive)
N/A
The command you were trying to run (eg rclone copy /tmp remote:tmp)
mkdir test_NFC
touch test_NFC/で
mkdir test_NFD
touch test_NFD/で
rclone sync test_NFC test_NFD --progress
The first character で has NFC normalization whereas the second one で has NFD normalization.
With normalization:
rclone sync test_NFC test_NFD --progress
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Checks: 1 / 1, 100%
Elapsed time: 0.0s
without normalization:
rclone sync test_NFC test_NFD --progress --no-unicode-normalization
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Checks: 1 / 1, 100%
Deleted: 1 (files), 0 (dirs)
Transferred: 1 / 1, 100%
Elapsed time: 0.0s
Is there a way to enable --no-unicode-normalization from the config?