当前位置: 首页 > news >正文

html学校网站模板建站合肥网络公司seo

html学校网站模板,建站合肥网络公司seo,凡科网建站模板,莆田外贸网站建设利用 C# 中的 FileSystemWatcher 制作一个文件夹监控小工具独立观察员 2020 年 12 月 26 日前一段看到微信公众号 “码农读书” 上发了一篇文章《如何使用 C# 中的 FileSystemWatcher》#xff08;翻译自#xff1a;https://www.infoworld.com/article/3185447/how-to-work-w… 利用 C# 中的 FileSystemWatcher 制作一个文件夹监控小工具独立观察员 2020 年 12 月 26 日 前一段看到微信公众号 “码农读书” 上发了一篇文章《如何使用 C# 中的 FileSystemWatcher》翻译自https://www.infoworld.com/article/3185447/how-to-work-with-filesystemwatcher-in-c.html 其中简述了使用 FileSystemWatcher 进行文件系统变更监测的方法本人受此启发决定制作一个文件夹内变动监控的小工具当作练手和自用。目前该工具已制作完成故发文分享给大家。 功能比较简单运行程序后点击 “选择文件夹” 按钮选择想要监控的文件夹然后点击 “开始监控文件变动” 即可。可以检测 文件夹 / 文件 的创建、删除、修改、重命名然后在信息窗中输出相关信息。如果取消勾选 “是否显示完全路径”则输出的信息中将不包含选择的 “文件夹路径” 部分也就是显示的是相对路径。如果取消勾选 “是否监控子文件夹”则程序将不监控子文件夹内的变动情况。 保存配置按钮可进行保存如下信息下次打开程序会恢复保存的状态 关键代码如下文末会给出代码仓库地址#region 文件夹监控private FileSystemWatcher _FileSystemWatcher new FileSystemWatcher();// 参考https://www.infoworld.com/article/3185447/how-to-work-with-filesystemwatcher-in-c.html/// summary /// 开始监控目录 /// /summary /// param namepath 目录路径 /param /// param nameisIncludeSubDir 是否包括子目录 /param private async void MonitorDirectory(string path, bool isIncludeSubDir true) {_FileSystemWatcher.EnableRaisingEvents false;_FileSystemWatcher new FileSystemWatcher();_FileSystemWatcher.Path path;_FileSystemWatcher.IncludeSubdirectories isIncludeSubDir;_FileSystemWatcher.Created FileSystemWatcher_Created;_FileSystemWatcher.Renamed FileSystemWatcher_Renamed;_FileSystemWatcher.Deleted FileSystemWatcher_Deleted;_FileSystemWatcher.Changed FileSystemWatcher_Changed;// 开始监控_FileSystemWatcher.EnableRaisingEvents true;await ConfirmBoxHelper.ShowMessage(DialogVm, $ 已开启监控[{Configs.FolderPath}]); }private void FileSystemWatcher_Changed(object sender, FileSystemEventArgs e) {Console.WriteLine($【{GetPathType(e.FullPath)} 更改】{GetPath(e)}); }private void FileSystemWatcher_Created(object sender, FileSystemEventArgs e) {Console.WriteLine($【{GetPathType(e.FullPath)} 创建】{GetPath(e)}); }private void FileSystemWatcher_Renamed(object sender, FileSystemEventArgs e) {Console.WriteLine($【{GetPathType(e.FullPath)} 重命名】{GetOldPath((RenamedEventArgs)e)} -- {GetPath(e)}); }private void FileSystemWatcher_Deleted(object sender, FileSystemEventArgs e) {Console.WriteLine($【{GetPathType(e.FullPath)} 删除】{GetPath(e)}); }/// summary /// 获取变动的路径的显示字符串 /// /summary private string GetPath(FileSystemEventArgs e) {if (Configs.IsShowFullPath){return e.FullPath;}return e.Name; }/// summary /// 获取原先路径的显示字符串 /// /summary private string GetOldPath(RenamedEventArgs e) {if (Configs.IsShowFullPath){return e.OldFullPath;}return e.OldName; }#endregion#region 判断是文件还是文件夹/// summary /// 获取路径类型判断是文件还是文件夹 /// /summary /// param namepath 路径 /param /// returnsPathTypeEnum/returns public static PathTypeEnum GetPathType(string path) {if (File.Exists(path)){return PathTypeEnum. 文件}else if (Directory.Exists(path)){return PathTypeEnum. 文件夹}else{return PathTypeEnum. 不存在} }/// summary /// 路径类型枚举 /// /summary public enum PathTypeEnum {文件文件夹不存在 }#endregion值得注意的就是FileSystemWatcher 开启和关闭监控是通过 EnableRaisingEvents 这个 bool 属性进行控制的。然后就是主要的四个事件增、删、改、重命名分别指定好回调方法_FileSystemWatcher.Created FileSystemWatcher_Created; _FileSystemWatcher.Renamed FileSystemWatcher_Renamed; _FileSystemWatcher.Deleted FileSystemWatcher_Deleted; _FileSystemWatcher.Changed FileSystemWatcher_Changed;还有一点就是其它事件的参数都是 FileSystemEventArgs 类型而重命名事件的独有参数是 RenamedEventArgs 类型这个是前者的子类多了旧的文件名和路径等信息。 程序和代码都展示完了又到了和大家说再见的时刻了在此附上代码地址和另一篇参考文章吧代码地址https://gitee.com/dlgcy/DLGCY.FilesWatcher发行版地址https://gitee.com/dlgcy/DLGCY.FilesWatcher/releases又一参考《FileSystemWatcher 用法详解》https://blog.csdn.net/hwt0101/article/details/8469285里面也有个监控软件不过我没下载大家可以试试待更新目前信息窗口信息多的话会触发 “灭霸模式”后面考虑加个开关。  好了就到这里吧谢谢阅读。
http://www.zqtcl.cn/news/302175/

相关文章:

  • 广州大石附近做网站的公司外包服务公司是干什么的
  • 做的新网站网上搜不到做的网站百度搜索不出来的
  • 电商网站后台报价公司如何建站
  • 查网站有没有做推广企业网站建设的目标
  • 北京网站维护公司专业外贸网站建设_诚信_青岛
  • 网站自己做还是用程序制作网站一般使用的软件有哪些
  • 晨雷文化传媒网站建设济南互联网品牌设计
  • 怎样给自己的网站做防红连接梵客装饰公司官网
  • 甘肃省城乡与住房建设厅网站纪检网站建设动态主题
  • 关于做好全国网站建设网站建设哪个好
  • 灵犀科技网站建设企业建设网站作用
  • 做网站架构图无版权图片网站
  • 赌场需要网站维护吗通过服务推广网站的案例
  • 阿里云网站空间网站建设犭金手指六六壹柒
  • 网站排名软件包年农业网站开发
  • 建设信用卡网银网站crm客户关系管理论文
  • 阿里巴巴网站的搜索引擎优化案例软件开发收费价目表
  • 企业网站建设之域名篇wordpress 文章居中
  • 萍乡网站建设行吗南康建设局官方网站
  • 一键部署wordpress爱站seo工具
  • 大连网站建设服务做进料加工在哪个网站上做
  • 南昌行业网站建设网站版权信息修改
  • 百度网站关键词排名助手低成本做网站 白之家
  • 怎么查询网站是谁做的部队网站建设报告
  • 租房网站开发专业网站建设品牌策划方案
  • 电子商务网站建设方案书软件开发工具图片
  • 案例建网站宿松网站建设公司
  • 秦皇岛网站开发wordpress免费国内主题
  • seo网站推广推荐阳江房管局查询房产信息网
  • php服装商城网站建设个人网站免费空间