Skip to content
Snippets Groups Projects
Commit 7e7537ba authored by tpylak's avatar tpylak
Browse files

LMS-1321 HierarchicalStorageUpdater: add error logging

SVN: 14280
parent a54d6316
No related branches found
No related tags found
No related merge requests found
...@@ -173,11 +173,23 @@ public class HierarchicalStorageUpdater implements IMaintenanceTask ...@@ -173,11 +173,23 @@ public class HierarchicalStorageUpdater implements IMaintenanceTask
private static void deleteWithSymbolicLinks(File toDeleteParent) private static void deleteWithSymbolicLinks(File toDeleteParent)
{ {
if (toDeleteParent.isDirectory() == false)
{
operationLog
.error("Directory structure is different than expected. File '"
+ toDeleteParent.getPath()
+ "' should be a directory. It will not be cleared.");
return;
}
for (File file : toDeleteParent.listFiles()) for (File file : toDeleteParent.listFiles())
{ {
// all these files should be symbolic links to a dataset directory. // all these files should be symbolic links to a dataset directory.
// We cannot delete recursively here, it would remove the original files. // We cannot delete recursively here, it would remove the original files.
file.delete(); boolean ok = file.delete();
if (ok == false)
{
operationLog.error("Cannot delete the file: " + file.getPath());
}
} }
toDeleteParent.delete(); toDeleteParent.delete();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment