Multiple folders and folders to copy

Hello everyone.
I would like to use a command for the following case but no idea how I can do it.

On the cloud drive I have this structure :
File 1
File 2
File 3
Folder 1
Folder 2
Folder 3

I would like to be able to copy to local drive File 1 and 2 + folder 1 and 3 but not the rest.

I used the include command line but not able to do for multiple things...

Thank you.

Nobody can see your screen. There was set of questions to answer when you posted.

should I keep guessing how you use it?

Post details and we will see. Answer in your posting style would be:

I used include and it all works perfectly.

you have three options, but i would only post about two of them

  • use multiple --include on the command, for each item
  • use --include-from, check the rclone docs, which would look like
/File 1
/File 2
/Folder 1/**
/Folder 3/**

-------------
note: filters work only the source, so the safest way to test is `rclone ls` or `rclone copy --dry-run`

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