What is the problem you are having with rclone?
I am trying to move sub directories containing the word "Featurettes"
The issue I Am having is rclone is recreating all directories whether they contain a folder with the name or not. Meaning thousands of empty folders will be made
Run the command 'rclone version' and share the full output of the command.
rclone v1.66.0
- os/version: Microsoft Windows Server 2022 Datacenter Evaluation 21H2 (64 bit)
- os/kernel: 10.0.20348.2402 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.22.1
- go/linking: static
- go/tags: cmount
Which cloud storage system are you using? (eg Google Drive)
Google Drive
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone -vP --transfers=100 --drive-use-trash=false --delete-empty-src-dirs --ignore-case --include **/*Featurettes*/** move Source:/ Destination:/Featurettes.TV/ --config=drives3.conf
My goal is to only have rclone create the parent folders that contain a sub folder with "Featurettes" and move the contents of those folders. It does this fine, but as I said it is creating every folder in root.
Which means I would have to run another cmd to remove the empty directories.
Is there a trick or something I am missing to tell it to skip creating empty directories in Destination?
Also I notice using the --transfers=100 flag appears not to work with the includes, is there anyway do this in parallel?