浏览代码

安全 - 删除临时文件

liuaoran 1 年之前
父节点
当前提交
58a947ba93
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      PDF Office/ViewModels/ViewContentViewModel.cs

+ 2 - 1
PDF Office/ViewModels/ViewContentViewModel.cs

@@ -1963,7 +1963,7 @@ namespace PDF_Office.ViewModels
                         PDFViewer.Document.WriteToFilePath(currentPath);
                         PDFViewer.CloseDocument();
                         PDFViewer.InitDocument(currentPath);
-                        //System.IO.File.Delete(tempPath);
+                        System.IO.File.Delete(tempPath);
 
                         if (!string.IsNullOrEmpty(permissionsPassword))
                         {
@@ -2002,6 +2002,7 @@ namespace PDF_Office.ViewModels
                         PDFViewer.CloseDocument();
                         PDFViewer.InitDocument(currentPath);
                         PDFViewer.Load();
+                        System.IO.File.Delete(tempPath);
                     }
                     catch
                     {