[SOLVED] How to keep folder structure when copy

I would like to copy a folder to my crypt remote, example :

folder structure :

folder/
folder/subfolder
folder/subfolder/file

the comannd

rclone copy --min-size 1b folder crypt:/

the result in the remote
subfolder
subfolder/file

I read the doc about rclone is the same as rsync but how can I workaround this ?

Can’t you just do

rclone copy --min-size 1b folder crypt:/folder

?

1 Like

This what just I’ve done ! And it’s work my bad ! Thanks