Multi source to single destination

Hi,

We are trying to use Rclone to copy word files but not from one source like C:, we also need to copy from shared NAS drives (mapped network drives) with different Drive letters like M:\ N:\ ...

Currently the command below is working but need to change drive letters manually or through a ps or bat script to iterate from drive C:\ till X:\

./rclone.exe copy "C:\" "mysftp:/home" --filter "+ *.docx" --filter "- *" --exclude-from "exclude.txt" --ignore-errors

My question: Is there a built in option or feature within rclone to edit the above command in a way that it passes through different source drive letters to same destination without using scripts ?

Regards,
James

welcome to the forum,

try something like this, make a fake root

mklink /d  b:\root\cdrive c:\
mklink /d  b:\root\ddrive d:\
rclone copy b:\root ...
1 Like

Thanks for the help.

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