Browse Source

安全 - 删除临时文件

liuaoran 1 year ago
parent
commit
58a947ba93
1 changed files with 2 additions and 1 deletions
  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
                     {