How to copy from local to remote in windows

i want to copy files from local folder to remote google drive in windows
i try below but no luck
rclone copy "f:\src*.* GoogleDriveShare:\Backup" P: --config "F:\Rclone\rclone.conf"
i try also
rclone copy "f:\src GoogleDriveShare:\Backup" P: --config "F:\Rclone\rclone.conf"

the result
2021/01/11 14:28:38 ERROR : : error reading source directory: directory not found
2021/01/11 14:28:38 ERROR : Attempt 1/3 failed with 1 errors and: directory not found
2021/01/11 14:28:38 ERROR : : error reading source directory: directory not found
2021/01/11 14:28:38 ERROR : Attempt 2/3 failed with 1 errors and: directory not found
2021/01/11 14:28:38 ERROR : : error reading source directory: directory not found
2021/01/11 14:28:38 ERROR : Attempt 3/3 failed with 1 errors and: directory not found
2021/01/11 14:28:38 Failed to copy: directory not found

hello and welcome to the forum,

try
rclone copy "f:\src" "GoogleDriveShare:Backup"

the quotes are only needed if the source or dest path has a space character in it.

in your case, there is no space, so this is a valid command
rclone copy f:\src GoogleDriveShare:Backup

Hello
P: refer to the letter in windows ?

what is it you you are trying to do?
what is the source?
what is the dest?

I was talking about his

rclone copy "f:\src*.* GoogleDriveShare:\Backup" P: --config "F:\Rclone\rclone.conf"

about that P:, what is that?
do you want to show progress, if yes, then use -P

if you are not sure what a command will do, test it first with --dry-run

rclone copy "f:\src" "GoogleDriveShare:Backup" -P --config "F:\Rclone\rclone.conf" --dry-run

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