Procházet zdrojové kódy

安全 - 删除临时文件

liuaoran před 1 rokem
rodič
revize
58a947ba93
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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
                     {