mmozeiko / RcloneBrowser

Simple cross platform GUI for rclone
https://mmozeiko.github.io/RcloneBrowser
The Unlicense
1.32k stars 415 forks source link

Drag and drop for multiples files #9

Open Maxou44 opened 7 years ago

Maxou44 commented 7 years ago

On Windows, drag and drop does not allow you to drag multiple files / folders at the same time

mmozeiko commented 7 years ago

My reason to do only one was because each rclone transfer can work only on one folder/file. That means dropping multiple items will start multiple transfers which probably is not what users want (because each of rclone transfers already transfers multiple files in parallel).

So until rclone supports this natively, I don't think I will be putting this in GUI.

naeloob commented 7 years ago

Hi @mmozeiko , good work on the Gui!!

What about using the --include parameter for each file/folder or pupulate all on a temporary file and use --include-from?

Regards

mmozeiko commented 7 years ago

Oh, I didn't realize its possible to use --include for this. I'll see what can I do about this.