You are not logged in.
Hey,
I'm looking for a file manager with a file-copy-queue feature.
It is useful when browsing mounted samba shares, and you find something you want to copy.
You'll then start copying the files, and then spot another useful folder. You start copying that as well
and suddenly you got 5 different file copies processing at the same time, which decreases the copy speed.
I also miss the feature when transfering files from my external harddrives.
If there is a lot of FM's with this feature, I prefer one without kde-dependencies, as I am using xfce.
Offline
I think the latest release of Nautilus has this feature, but obviously has gnome dependencies.
Offline
Hello, I'm looking for a manager with this feature too. Can't believe, that Nautilus is the only one. Any other suggestions pleezz :)
Offline
You could use a simple script:
#! /bin/bash
#queue copy
#call with cp's arguments, e.g. qc -R -- /usr/bin/mplayer /tmp
while pgrep '^cp$'; do
sleep 5
done
cp "$@"
And then run that in the background.
Offline
Well, this is only a workaround that can't replace file manager, but thanks for the reply
Offline
If you like cli app, give mc a try. and they just released a new version 4.6.2.
Offline
If MC really does have that as a feature, it's once again proved itself _the_ graphical (sorta) file manager.
Offline
I use batch (from at package, requires running atd) to queue long and potentially resource-hungry operations. It is not a file manager, of course
Offline
If MC really does have that as a feature, it's once again proved itself _the_ graphical (sorta) file manager.
sorry for misinformed.
mc has a background job option while copying, it is not exactly a queue like functionality, but simulating to be a queue, and you can stop/resume a background job.
Offline
Unfortunately, Nautilus doesn't have an actual copy queue. It just groups multiple file operations into a single 'File Operations' window. There's probably a Gnome-Bugzilla feature request for it now.
Offline
krusader 2 does have queuing ability
Offline
krusader 2 does have queuing ability
++
By striving to do the impossible, man has always achieved what is possible. Those who have cautiously done no more than they believed possible have never taken a single step forward - Mikhail Bakunin
Offline
+1 for krusader
how do you use this function in mc?
He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.
Douglas Adams
Offline
Hi guys,
I just wrote a patch for Midnight Commander which allow me to keep in running once job a time.
If you need...
Dany
Offline
Yea @dany, i'm interested.
How does it work? Does it moves operation to background, and then just executes them on after other? That is, can i see somewhere what operations are pending, and if needed, can i stop it?
Offline