Rclone can't create file system

Issue opened:

that would be another windows os quirk.
\" is considered an escape character.

to the OP, fwiw, whenever possible, i avoid paths that require quotes.
in this case, U:\Documents\OneDrive1\ does not need to be quoted.

if quotes must be used then here are simple workarounds

:: use trailing double slash
rclone lsd  "c:\data\rclone\\"
          -1 2023-12-05 17:59:15        -1 folder
:: use unix style paths on windows.
rclone lsd  "c:/data/rclone/"
          -1 2023-12-05 17:59:15        -1 folder
1 Like

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