diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadFile.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadFile.java b/src/github/daneren2005/dsub/service/DownloadFile.java index 04dc537a..505e4a6d 100644 --- a/src/github/daneren2005/dsub/service/DownloadFile.java +++ b/src/github/daneren2005/dsub/service/DownloadFile.java @@ -267,9 +267,11 @@ public class DownloadFile implements BufferFile { deleteFromStore(); // Delete all possible versions of the file + File parent = partialFile.getParentFile(); Util.delete(partialFile); Util.delete(completeFile); Util.delete(saveFile); + FileUtil.deleteEmptyDir(parent); } public void unpin() { |