使用FileSystemWatcher捕获系统文件状态

2018-06-18 03:02:28来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

源代码:

using System;

using System.Collections.Generic;

using System.Linq; using System.Text;

using System.Threading.Tasks; using System.IO;

namespace ConsoleApplication138

{     class Program    

{         static void Main(string[] args)      

   {

            Watch(@"c:\t", "*.txt", true);     

    }       

  static void Watch(string path,string filter,bool includesubdirs)   

      {             using (FileSystemWatcher watcher=new FileSystemWatcher (path ,filter ))    

         {                 watcher.Created += watcher_createchangeddeleted;           

      watcher.Changed += watcher_createchangeddeleted;               

  watcher .Deleted +=watcher_createchangeddeleted;              

   watcher .Renamed +=watcher_Renamed;                

watcher .Error +=watcher_Error;               

  watcher.IncludeSubdirectories = includesubdirs;    

             watcher.EnableRaisingEvents = true;            

     Console.WriteLine("LIstening for events -press <enter> to end");  

               Console.Read();             }         }       

  static void watcher_createchangeddeleted(object sender,FileSystemEventArgs e)  

       {             Console.WriteLine("File :{0} has been {1}", e.FullPath, e.ChangeType);         }  

       static void watcher_Renamed(object sender,RenamedEventArgs e)      

   {             Console.WriteLine("renamed:{0}->{1}", e.OldFullPath, e.FullPath);

        }         static void watcher_Error(object sender,ErrorEventArgs e)        

{             Console.WriteLine("error: " + e.GetException().Message);         }

    } }

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:C#文本文件导入数据库

下一篇:类的关联关系