What is the folder path (Dropbox)

How to copy the entire folder files between clouds (Including folder)

The command I tried:
rclone copy -P dropbox:"New Forder" gdrive:

With this command, all files from "New Forder" are copied to gdrive directly without creating a folder with the same name.

How to copy files including the folder

hello and welcome to the forum,

try rclone copy -P dropbox:"New Forder" gdrive:"New Forder"

that is documented at https://rclone.org/commands/rclone_copy/
"when source:path is a directory, it's the contents of source:path that are copied, not the directory name and contents."

Yes, I did the same but, what if I have multiple folders to copy?

it depends,

can you are an example of a set of source and dest folders?

I have 4 folders in dropbox that need to copy to drive

Maths Models
Simple and Interesting Ideas
Social Projects
Social Projects-2

So how to copy all folders with a single command?

create a text file. let's call it include.txt

/Maths Models/**
/Simple and Interesting Ideas/**
/Social Projects/**
/Social Projects-2/**

run this command, if the output looks good, then remove --dry-run and run the command again
rclone copy -P dropbox: gdrive: --include-from=/path/to/include.txt --dry-run -v

Thanks, And how to select all folders to copy in dropbox?

rclone copy -P dropbox:** gdrive:**

will this work?

Just

rclone copy -P dropbox: gdrive:

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