解決C#中FileSystemWatcher類的Changed事件觸發多次的問題


public static void WatchFile()
{

FileSystemWatcher watcher = new FileSystemWatcher();
watcher.Path = "E:/Work/Test/source";
watcher.Filter = "*.txt";
watcher.NotifyFilter = NotifyFilters.Size;
watcher.Changed += new FileSystemEventHandler(Change_Watch);
watcher.EnableRaisingEvents = true;

}

public static void Change_Watch(object o, FileSystemEventArgs args)
{
string sourcePath = "E:/Work/Test/source/ceshi.txt";
string targetPath = "E:/Work/Test/target/ceshi.txt";
var watcher = o as FileSystemWatcher;
watcher.EnableRaisingEvents = false;
File.Copy(sourcePath, targetPath, true);
watcher.EnableRaisingEvents = true;

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM