diff --git a/uppsrc/Core/Path.cpp b/uppsrc/Core/Path.cpp index 9da798a80..a8f6dbdd5 100644 --- a/uppsrc/Core/Path.cpp +++ b/uppsrc/Core/Path.cpp @@ -883,7 +883,7 @@ bool DeleteFolderDeep(const char *dir) while(ff) { String name = ff.GetName(); String p = AppendFileName(dir, name); - if(ff.IsFile()) + if(ff.IsFile() || ff.IsSymLink()) FileDelete(p); else if(ff.IsFolder())