Remove torrent temp folder if it becomes unneeded

This commit is contained in:
Vladimir Golovnev (Glassez) 2017-04-26 11:38:50 +03:00
parent e433cbab97
commit c56b4a25bc

View file

@ -1358,6 +1358,10 @@ void TorrentHandle::handleStorageMovedAlert(libtorrent::storage_moved_alert *p)
}
qDebug("Torrent is successfully moved from %s to %s", qPrintable(m_oldPath), qPrintable(m_newPath));
if (m_oldPath == m_session->torrentTempPath(hash())) {
qDebug() << "Removing torrent temp folder:" << m_oldPath;
Utils::Fs::smartRemoveEmptyFolderTree(m_oldPath);
}
updateStatus();
m_newPath.clear();