Server to Gdrive (Specific folder with contents to drive)

What is the problem you are having with rclone?

PROBLEM 1: Can't find source:sourcepath

Wish to copy transfer specific folder to gdrive.

Basic: rclone copy source:sourcepath dest:destpath

but i cant find (source:sourcepath) only (/home/test1/torrents/rtorrent/) how do i find the source in my server?

PROBLEM 2: Copy specific file
/rtorrent has few files example:
rtorrent1
rtorrent2
rtorrent3

but i need only rtorrent2 to be copy instead of the whole files.

What is your rclone version (output from rclone version)

rclone v1.51.0
Using Kitty to access the server.

Thanks

You can copy by giving the full path to a file or a folder to copy up:

felix@gemini:~/example$ pwd
/home/felix/example
felix@gemini:~/example$ rclone copy /home/felix/example/test1 GD:
felix@gemini:~/example$ rclone lsf GD:test1
test1

Do you have a full command you are trying to run? You can use -vv and --dry-run to check and see if it's going to do what. you expect.

felix@gemini:~/example$ rclone copy /home/felix/example/test2 GD: -vv --dry-run
2020/05/04 07:24:47 DEBUG : rclone: Version "v1.51.0" starting with parameters ["rclone" "copy" "/home/felix/example/test2" "GD:" "-vv" "--dry-run"]
2020/05/04 07:24:47 DEBUG : Using config file from "/opt/rclone/rclone.conf"
2020/05/04 07:24:47 DEBUG : test2: Need to transfer - File not found at Destination
2020/05/04 07:24:47 NOTICE: test2: Not copying as --dry-run
2020/05/04 07:24:47 INFO  :
Transferred:   	         0 / 0 Bytes, -, 0 Bytes/s, ETA -
Transferred:            1 / 1, 100%
Elapsed time:         0.0s

2020/05/04 07:24:47 DEBUG : 5 go routines active
2020/05/04 07:24:47 DEBUG : rclone: Version "v1.51.0" finishing with parameters ["rclone" "copy" "/home/felix/example/test2" "GD:" "-vv" "--dry-run"]

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