Rclone Move Directly as One Part Folder

Hi, i want to move my folder A to B direcly not piece by piece like 3/22
i want to move it direclty as one part folder is it possible ? which flag i should use
(GDrive remotes)

Sorry but it is not clear at all what you are asking for...

What is the problem with rclone move?

for example.

i have A remote inside i have paracute folder (this folder has subfolders etc like over 10K)

i want to directly move the folder doesn't matter how long it takes

i can move with drive api but rclone counting folders and moving one by one.

how can i sent B remote directly the folder from shared drive

OK.

Use rclone moveto instead then:

rclone moveto remote:A remote:B

i tried but it not helped.

rclone moveto A: B:
rclone moveto A:here B:here

What is your remote name? Post your full command.

You can not move one remote to another...

When moving stuff between different remotes than all objects have to be moved one by one.

rclone moveto B: A: --ignore-existing --drive-stop-on-upload-limit --drive-server-side-across-configs --no-traverse -P

What is remote B? And what is remote A?

post rclone config redacted

A]
type = drive
scope = drive
team_drive = XXX
service_account_file_path = /root/.config/rclone/accounts
service_account_file = /root/.config/rclone/accounts/1.json

[B]
type = drive
scope = drive
team_drive = XXX
service_account_file_path = /root/.config/rclone/accounts
service_account_file = /root/.config/rclone/accounts/1.json

If these are two different remotes than move will involve moving all objects one by one.

You can

rclone moveto A:path/to/dir1 A:path/to/dir2

is there any way to solve this except rclone ?

If you are moving directories between two different gdrive than all objects have to be moved (one by one) even if only server-side.

It is the same like with local disk. You can move folder within one disk as single operation as it only involves changing some metadata in allocation tables.

But if you want to move it to another disk then all data have to be moved.

There is no --magic option

how about google drive web side, its moving anyway i know the process but its all backend i just don't like to face with this

What about it? Not sure I understand.

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