123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- using ComPDFKit.PDFDocument;
- using PDF_Master.Properties;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Helper
- {
- /// <summary>
- /// 用于创建、获取、删除缓存文件的辅助类
- /// 功能模块需要创建缓存文件夹时,统一在此类里处理
- /// 临时文件在app启动时进行删除
- /// </summary>
- public class CacheFilePath : BindableBase
- {
- private static CacheFilePath instance = new CacheFilePath();
- /// <summary>
- /// 图章缓存文件夹路径
- /// </summary>
- List<string> CustomStamp = new List<string> { "CustomStamp" };
- List<string> SignatureFreeHand = new List<string> { "Signature", "FreeHand" };
- List<string> SignatureStamp = new List<string> { "Signature", "Stamp" };
- List<string> MergeFile = new List<string> { "Temp" };
- /// <summary>
- /// Document路径下的新手引导文档
- /// </summary>
- List<string> GuidPDF = new List<string>() { "GuidPDF" };
- /// <summary>
- /// 扫描仪缓存文件夹路径
- /// </summary>
- List<string> ScanFile = new List<string> { "ScanTemp" };
- private List<string> CreatedFile = new List<string>() { "CreatedFile"};
- /// <summary>
- /// 扫描仪缓存文件夹路径
- /// </summary>
- List<string> ADFile = new List<string> { "ADTemp" };
- private CPDFDocument copyDoc;
- /// <summary>
- /// 页面编辑复制粘贴的临时缓存文件
- /// </summary>
- public CPDFDocument CopyDoc
- {
- get { return copyDoc; }
- set
- {
- SetProperty(ref copyDoc, value);
- }
- }
- public static CacheFilePath Instance => instance;
- private CacheFilePath()
- {
- }
- ~CacheFilePath()
- {
- if (CopyDoc != null)
- {
- CopyDoc.Release();
- }
- }
- /// <summary>
- /// 自定图章缓存文件夹
- /// </summary>
- public string CustomStampPath
- {
- get
- {
- return CreateCacheDirectory(CustomStamp);
- }
- }
- /// <summary>
- /// 签名图章缓存文件夹
- /// </summary>
- public string SignatureStampPath
- {
- get
- {
- return CreateCacheDirectory(SignatureStamp);
- }
- }
- /// <summary>
- /// 签名手绘缓存文件夹
- /// </summary>
- public string SignatureFreeHandPath
- {
- get
- {
- return CreateCacheDirectory(SignatureFreeHand);
- }
- }
- /// <summary>
- /// 合并文件的缓存文件夹
- /// </summary>
- public string MergeFilePath
- {
- get
- {
- return CreateCacheDirectory(MergeFile);
- }
- }
- /// <summary>
- /// 扫描仪文件的缓存文件夹
- /// </summary>
- public string ScanFilePath
- {
- get
- {
- return CreateCacheDirectory(ScanFile);
- }
- }
- /// <summary>
- /// AD文件的缓存文件夹
- /// </summary>
- public string ADFilePath
- {
- get
- {
- return CreateCacheDirectory(ADFile);
- }
- }
- /// <summary>
- /// 用于保存新建的临时文档
- /// </summary>
- public string CreatedFilePath
- {
- get
- {
- return CreateCacheDirectory(CreatedFile);
- }
- }
- public string GuidPDFPath
- {
- get
- {
- return CreateCacheDirectory(GuidPDF);
- }
- }
- /// <summary>
- /// 在“文档”路径下创建缓存文件夹,传C:\Users\kdan\Documents\PDF Master 以后的文件夹名
- /// </summary>
- /// <param name="directoryName">文件路径列表,首位为第一个文件夹名,以此类推</param>
- /// <returns></returns>
- private string CreateCacheDirectory(List<string> directoryName)
- {
- try
- {
- string Path = App.CurrentPath;
- for (int i = 0; i < directoryName.Count; i++)
- {
- Path = System.IO.Path.Combine(Path, directoryName[i]);
- }
- System.IO.DirectoryInfo directoryInfo = System.IO.Directory.CreateDirectory(Path);
- if (directoryInfo.Exists
- && (directoryInfo.Attributes & System.IO.FileAttributes.ReadOnly) != System.IO.FileAttributes.ReadOnly
- && (directoryInfo.Attributes & System.IO.FileAttributes.Hidden) != System.IO.FileAttributes.Hidden
- )
- {
- return Path;
- }
- else
- {
- return "";
- }
- }
- catch (Exception)
- {
- return "";
- }
- }
- /// <summary>
- /// 将临时文件添加到待删除列表,app下次启动时删除
- /// </summary>
- /// <param name="file"></param>
- public void AddToDeleteFiles(string file)
- {
- //添加时不做是否存在判断,考虑可能每个人调用的顺序不一样,在删除时再做判断
- try
- {
- if (!Settings.Default.AppProperties.NeedToDeletePath.Contains(file))
- {
- Settings.Default.AppProperties.NeedToDeletePath.Add(file);
- }
- Settings.Default.Save();
- //Save后,需要调用reload 防止互相占用文件,引起崩溃,具体效果待验证
- Settings.Default.Reload();
- }
- catch { }
- }
- public void AddToDeleteFiles(List<string> files)
- {
- foreach (string file in files)
- {
- AddToDeleteFiles(file);
- }
- }
- /// <summary>
- /// 启动时删除临时文件
- /// </summary>
- public void ClearDeleteFiles()
- {
- try
- {
- foreach (string file in Settings.Default.AppProperties.NeedToDeletePath)
- {
- if (File.Exists(file))
- {
- File.Delete(file);
- }
- }
- Settings.Default.AppProperties.NeedToDeletePath.Clear();
- //清除ScanTemp文件夹及该目录中的所有子内容
- string ScanTempPath = Path.Combine(App.CurrentPath, "ScanTemp");
- DirectoryInfo Scantempfolder = new DirectoryInfo(ScanTempPath);
- if (Scantempfolder.Exists)
- {
- Directory.Delete(ScanTempPath, true);
- }
- //清除Temp文件夹及该目录中的所有子内容
- string TempPath= Path.Combine(App.CurrentPath, "Temp");
- DirectoryInfo tempfolder = new DirectoryInfo(TempPath);
- if (tempfolder.Exists)
- {
- Directory.Delete(TempPath, true);
- }
- //清除新建文件夹及该目录中的所有子内容
- string CreatedFilePath = Path.Combine(App.CurrentPath, CreatedFile[0]);
- DirectoryInfo CreatedFilePathFolder = new DirectoryInfo(CreatedFilePath);
- if (CreatedFilePathFolder.Exists)
- {
- Directory.Delete(CreatedFilePath, true);
- }
- }
- catch { }
- }
- }
- }
|