How copy a folder that is inside a folder

Hello guys, I'm trying to copy a folder under the directory, and I am probably missing something.

What is the problem you are having with rclone?

I'd like to copy a folder that is under a folder on my directory and I don't know how to do it

The file is under

Downloads
->PromptsGPT

Whem I ran the code to copy the entire folder "Downloads" the rcloud worked but is taking 5 days to complete. Is it possible to copy each one that I need, how to do it?

Run the command 'rclone version' and share the full output of the command.

rclone v1.67.0

  • os/version: darwin 14.5 (64 bit)
  • os/kernel: 23.5.0 (arm64)
  • os/type: darwin
  • os/arch: arm64 (ARMv8 compatible)
  • go/version: go1.22.4
  • go/linking: dynamic
  • go/tags: cmount

Are you on the latest version of rclone? You can validate by checking the version listed here: Rclone downloads
--> Yes

Which cloud storage system are you using? (eg Google Drive)

OpenDrive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

'''rclone copyto seedhost:downloads/PromptsGPT opendrive: PromptsGPT'''

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

Paste config here

[opendrive]
type = opendrive
username = XXX
password = XXX

[seedhost]
type = ftp
host = XXX
user = XXX
pass = XXX

A log from the command that you were trying to run with the -vv flag

'''rclone: Version "v1.67.0" starting with parameters ["rclone" "copyto" "seedhost:downloads/AluraChatGPT" "opendrive:" "AluraChatGPT" "-vv"]
Usage:
rclone copyto source:path dest:path [flags]'''

Thank you for your help!

welcome to the forum,

can use these command to explore the filesystem from rclone perspective.
rclone lsd seedhost:
rclone tree seedhost:
rclone ls seedhost:

then specify that as a full path, something like
rclone copy seedhost:Downloads/PromptsGPT ...

there are few ways

  • specify the full path of the filename
    rclone copy seedhost:downloads/AluraChatGPT/somefile.ext ...
  • create a list of files and feed that to rclone
    rclone copy seedhost:downloads/AluraChatGPT --files-from=file.lst ...

Hey there!

I was able to find a solution using copy instead of copyto as you said!

rclone copy -Pv seedhost:downloads/PromptsChatGPT/ opendrive:PromptsChatGPT

Thank you so much for your help

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