using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { MonitorAndTransferFiles(); Console.ReadLine(); } static string destPath = @"D:\C\ConsoleApplication2\ConsoleApplication2"; static void MonitorAndTransferFiles(string sourcePath=null) { sourcePath = Directory.GetCurrentDirectory(); WatchFiles(sourcePath); } static void WatchFiles(string path) { FileSystemWatcher watcher = new FileSystemWatcher(); watcher.Path = path; watcher.NotifyFilter = NotifyFilters.LastWrite|NotifyFilters.CreationTime; watcher.Filter = "*.*"; watcher.Changed += Watcher_Changed; watcher.Created += Watcher_Created; watcher.EnableRaisingEvents = true; } private static void Watcher_Created(object sender, FileSystemEventArgs e) { try { Console.WriteLine($"Created:FullPath:{e.FullPath}, ChangeType: {e.ChangeType}"); File.Copy(e.FullPath, Path.Combine(destPath, Path.GetFileName(e.FullPath)), true); } catch { } } private static void Watcher_Changed(object sender, FileSystemEventArgs e) { try { Console.WriteLine($"Changed:FullPath:{e.FullPath}, ChangeType: {e.ChangeType}"); File.Copy(e.FullPath, Path.Combine(destPath, Path.GetFileName(e.FullPath)), true); } catch { } } } }
轉載請註明出處,本文鏈接:https://www.uj5u.com/net/98003.html
標籤:C#
上一篇:.NET開源類別庫Nini手冊(INI、XML、注冊表的配置應用)-中文翻譯
下一篇:C#中關于值型別和參考型別的區別
