Possible to use a wildcard to send all items via rclone from 'this folder'?

Wondering if there is any way to make rclone quickly send the contents of the current directory as follows:

Right click > command prompt here > rclone copy * gdrive:

Does rclone support those kind of wildcards?

Can't you just use a dot?

rclone copy . gdrive:

Just trying to figure out how to call rclone with a right-click in any folder .. then I'll give it a try :slight_smile:

rclone copy . gdrive: works :slight_smile:

I've added rclone to the right-click menu, but would also like to pass flags. Is that possible?

I've tried:
C:\Windows\SysWOW64\cmd.exe /K "H:\rclone\rclone.exe" --buffer-size 512M --drive-chunk-size 512M --checkers 8 --transfers 8 --tpslimit 8 --max-transfer 750G --fast-list --exclude-from excludes.txt -P

... but the flags are not being passed.

Any way to run rclone with that exact set of flags each time, instead of needing to type them all out?

Do you have in Window's right click menu "SendTo" folder? You can place batch file to SendTo. E.g:
pushd %1
rclone copy . .....
And send directory to this batch.

What I'm trying to achieve is the following:

To be able to right-click on any file or folder anywhere and select 'Send to gdrive with rclone (folder1)', 'Send to gdrive with rclone (folder2)', etc - with all the flags above.

Is it possible?

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