浏览代码

Bug 1660: Error when closing edited/opened files with "Keep temporary copies of remote files in deterministic paths" option enabled

(before Bug 1352, it worked because SHFileOperation silently does nothing when provided with an empty path)

(cherry picked from commit 5b8156df4e73aab36966f781fdfd82fa86c07a22)

Source commit: b7722a09eb3e5f011cbf2de460679e5ea9bec8d5
Martin Prikryl 7 年之前
父节点
当前提交
87e6a335ec
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      source/windows/EditorManager.cpp

+ 1 - 1
source/windows/EditorManager.cpp

@@ -440,7 +440,7 @@ bool __fastcall TEditorManager::CloseFile(int Index, bool IgnoreErrors, bool Del
     FFiles.erase(FFiles.begin() + Index);
     Result = true;
 
-    if (Delete)
+    if (Delete && !LocalRootDirectory.IsEmpty())
     {
       if (!RecursiveDeleteFile(ExcludeTrailingBackslash(LocalRootDirectory), false) &&
           !IgnoreErrors)