zoukankan      html  css  js  c++  java
  • C# FileSystemWatcher

     static void Main(string[] args)
            {
                Task task = Task.Run(() => 
                { 
                    CreateRndTextFiles();
                });
               
                string path = Directory.GetCurrentDirectory();
                FileSystemWatchDemo(path, "*", true);
               
                Console.ReadLine();
            }
    
            private static void CreateRndTextFiles()
            {
                for(int i=0;i<10000;i++)
                {
                    Thread.Sleep(10);
                    File.Create(Guid.NewGuid().ToString() + ".txt");                
                }            
            }
    
            static void FileSystemWatchDemo(string path,string filter,bool includeSubDirs)
            {
                using(FileSystemWatcher fsw=new FileSystemWatcher(path))
                {
                    fsw.Created += FileCreatedChangedDeteled;
                    fsw.Changed += FileCreatedChangedDeteled;
                    fsw.Deleted += FileCreatedChangedDeteled;
                    fsw.Renamed += FswRenamed;
                    fsw.Error += FswError;
                    fsw.IncludeSubdirectories = includeSubDirs;
                    fsw.EnableRaisingEvents = true;
                    Console.WriteLine("Listening for events-press <enter> to end");
                    Console.ReadLine();
                }
            }
    
            private static void FswError(object sender, ErrorEventArgs e)
            {
                Console.WriteLine($"Error:{e.GetException().Message}");
            }
    
            private static void FswRenamed(object sender, RenamedEventArgs e)
            {
                Console.WriteLine($"Renamed:{e.OldFullPath}->{e.FullPath}");
            }
    
            private static void FileCreatedChangedDeteled(object sender, FileSystemEventArgs e)
            {
                Console.WriteLine($"File {e.FullPath} has been {e.ChangeType}");
            }
  • 相关阅读:
    9.17考试
    Something
    tesuto-Mobius
    7.22考试
    填坑...P1546 最短网络 Agri-Net
    P1125 笨小猴
    P2822 组合数问题
    致我们曾经刷过的水题
    Luogu P1186 玛丽卡
    Luogu P1726 上白泽慧音
  • 原文地址:https://www.cnblogs.com/Fred1987/p/13068304.html
Copyright © 2011-2022 走看看