04 2014 档案
摘要:字体的安装需要调用到系统的api [DllImport("kernel32.dll", SetLastError = true)] static extern int WriteProfileString(string lpszSection, string lpszKeyName, string lpszString); [DllImport("user32.dll")] public static extern int SendMessage(int hWnd,uint msg,int wParam, int lParam); ...
阅读全文
摘要:1. 有一个专门的类用于监视文件夹变动FileSystemWatcher 设置该对象相关属性。 注:不能同事监视多种扩展名的文件对象,如果需要监视多种类型的文件的话需要定义多个对象分别实现 _ttfWatcher.Path = titleFolderSelection.Path; _ttfWatcher.Filter = "*.ttf"; _ttfWatcher.Changed += OnProcess; _ttfWatcher.Created += OnProcess; _ttfW...
阅读全文
摘要:/// /// 文件加密 /// /// 文件路径 /// 保存路径 /// 密钥 public static void encryptFile(string filePath, string savePath, string keyStr) { //通过des加密 var des = new DESCryptoServiceProvider(); //通过流打开文件 var fs = Fi...
阅读全文