C# 时时监听目录文件改动
摘要:
[PermissionSetAttribute(SecurityAction.Demand,Name="FullTrust")]staticvoidMain(string[]args){FileSystemWatcherwatcher=newFileSystemWatcher();watcher.Path=AppDomain.CurrentDomain.BaseDirectory;/*设置为监视LastWrite和LastAccess时间方面的更改,以及目录中文本文件的创建、删除或重命名。*/watcher.NotifyFilter=NotifyFilters.LastAc 阅读全文
posted @ 2012-11-16 10:10 AlexGeng 阅读(762) 评论(0) 推荐(0) 编辑