Now able to specify if the .torrent file gets deleted when removing a

torrent.
This commit is contained in:
Andrew Resch 2007-06-13 21:10:12 +00:00
parent ed76e66e3d
commit 3d1e4017d3
2 changed files with 8 additions and 4 deletions

View File

@ -295,13 +295,17 @@ class Manager:
self.add_torrent_ns(filename, save_dir, compact)
return self.sync() # Syncing will create a new torrent in the core, and return it's ID
def remove_torrent(self, unique_ID, data_also):
def remove_torrent(self, unique_ID, data_also, torrent_also):
temp = self.unique_IDs[unique_ID]
temp_fileinfo = deluge_core.get_file_info(unique_ID)
self.remove_torrent_ns(unique_ID)
self.sync()
# Remove .torrent file if asked to do so
if torrent_also:
os.remove(temp.filename)
# Remove data, if asked to do so
if data_also:
# Must be done AFTER the torrent is removed
@ -676,8 +680,7 @@ class Manager:
for unique_ID in to_delete:
self.state.torrents.remove(self.unique_IDs[unique_ID])
self.state.queue.remove(unique_ID)
# Remove .torrent and .fastresume
os.remove(self.unique_IDs[unique_ID].filename)
# Remove .fastresume
try:
# Must be after removal of the torrent, because that saves a new .fastresume
os.remove(self.unique_IDs[unique_ID].filename + ".fastresume")

View File

@ -941,6 +941,7 @@ class DelugeGTK:
warning = glade.get_widget("warning")
warning.set_text(" ")
torrent_also = glade.get_widget("torrent_also")
data_also = glade.get_widget("data_also")
data_also.connect("toggled", self.remove_toggle_warning, warning)
@ -956,7 +957,7 @@ class DelugeGTK:
else:
self.torrent_selected = None
self.manager.remove_torrent(torrent, data_also.get_active())
self.manager.remove_torrent(torrent, data_also.get_active(), torrent_also.get_active())
self.clear_details_pane()
def clear_details_pane(self):