소스 검색

安全 - 删除临时文件

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
                     {