Delete dump ID directory during dump entry deletion

Change-Id: Ic77e86c9e45d4b25397a4b7cfd70e131a40bdfa8
Signed-off-by: Jayanth Othayoth <ojayanth@in.ibm.com>
diff --git a/dump_entry.cpp b/dump_entry.cpp
index 7b9965c..d7878c9 100644
--- a/dump_entry.cpp
+++ b/dump_entry.cpp
@@ -15,7 +15,7 @@
     //Delete Dump file from Permanent location
     try
     {
-        fs::remove(file);
+        fs::remove_all(file.parent_path());
     }
     catch (fs::filesystem_error& e)
     {