6
3
I am using µTorrent v2. Is it possible to remove a file from µTorrent when a download has finished automatically? I want to keep µTorrent open rather then closing it down.
6
3
I am using µTorrent v2. Is it possible to remove a file from µTorrent when a download has finished automatically? I want to keep µTorrent open rather then closing it down.
8
Instead of just stopping at the point of completing a download, here are a few options (which I think uTorrent will also support) -- they are torrent friendly.
6
You can change the default behavior for the delete function:
Go to Options -> Preferences -> Advanced
. Find the listing gui.default_del_action
: change the value from 0
to 1
.
In fact, you can change the value from 0
all the way to 3
with the corresponding results:
0
means "Remove" (remove the torrent job from the list, but all related files are left intact on the disk)
1
means "Remove and delete .torrent" (remove the selected torrent job(s) from the list and the corresponding torrent file(s) from where the storage location on disk)
2
means "Remove and delete Data" (remove the torrent selected job(s) from the list and all content downloaded from the torrent job(s))
3
means "Remove and delete .torrent + Data" (remove the selected torrent job(s) from the list, the corresponding torrent file(s) from the storage location on disk, and all content downloaded from the torrent job(s))
3
Yes, there is. I've written a script that accesses uTorrent's Web UI to remove completed torrents automatically. You can find instructions on how to use it on my blog at:
http://www.aeonity.com/xuanming/automatically-remove-torrents-after-download
Perfect, event works with the trusty uTorrent 2.2.1. Thanks. – Marcelo Mason – 2014-07-24T14:07:54.050
2
Yes: click the finished torrent (it will be listed as seeding) and stop it (there's a stop
button on the toolbar).
You can then delete or move the file.
You should be nice and seed the files you download so that others benefit from the file being distributed, too. that won't work if you stop the seeding and delete the file.
Read the question. It says auto remove. – xyres – 2015-09-15T06:11:21.210
Some torrents have tens of thousands of seeds, so not everybody needs to keep seeding for days afterwards. Also, sometimes a torrent may download really slowly, so you end up uploading a lot while waiting for it finish. Do you insist that a person keep seeding after the file is done downloading even if they have already uploaded 2x as much while waiting for it finish? – Bobson – 2011-09-24T18:51:10.280
1@Bobson I don't insist on sharing at all. It's merely recommended, not mandatory. If someone doesn't want to upload at all, I'm fine with that. And of course you're right that resharing starts as soon as soon as enough bits have been downloaded. – Torben Gundtofte-Bruun – 2011-09-24T18:54:16.637
Fair enough; replace 'insist' with another word. The point is that everybody always says to seed after finishing, but I have seen plenty of cases where post-complete seeding is irrelevant. – Bobson – 2011-09-24T18:59:05.787
1
No, there is no built-in way to automatically remove a file in µTorrent. Automatically stopping it is the closest you can get.
Your best bet is to request a way to automatically remove a torrent once it reaches the specified ratio, making sure to explain that you can already automatically stop torrents anyway, so automatically removing them is no more harmful than that.
1
You should instead try qBittorrent, in portableapps format.
It has the feature to remove the torrent when it reaches your set ratio. I have mine set at 1,5 sometimes 2.0 as I am very friendly by nature.
This may be better as a comment to the original post – Dave M – 2013-11-01T17:24:41.063
0
Use the webAPI that utorrent provides. If you enable the webUI in utorrent you will be able to get to utorrent through your web browser. Checkout this webpage: http://www.utorrent.com/community/developers/webapi
Through the API you can send HTTP POST/GET requests to utorrent, which will enable you to remove a torrent when it's done.
In the utorrent options you can run a program when a torrent either changes state or has finished downloading. Use that feature together with the webAPI and create a simple script that does that for you.
6But the files remain in the list; how do you actually remove them? – Bobson – 2011-09-24T18:49:22.997