답변:
그것은 System.IO.FileSystemWatcher 입니다.
FileSystemWatcher
수업을 사용할 수 있습니다 .
public void CreateFileWatcher(string path)
{
// Create a new FileSystemWatcher and set its properties.
FileSystemWatcher watcher = new FileSystemWatcher();
watcher.Path = path;
/* Watch for changes in LastAccess and LastWrite times, and
the renaming of files or directories. */
watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
| NotifyFilters.FileName | NotifyFilters.DirectoryName;
// Only watch text files.
watcher.Filter = "*.txt";
// Add event handlers.
watcher.Changed += new FileSystemEventHandler(OnChanged);
watcher.Created += new FileSystemEventHandler(OnChanged);
watcher.Deleted += new FileSystemEventHandler(OnChanged);
watcher.Renamed += new RenamedEventHandler(OnRenamed);
// Begin watching.
watcher.EnableRaisingEvents = true;
}
// Define the event handlers.
private static void OnChanged(object source, FileSystemEventArgs e)
{
// Specify what is done when a file is changed, created, or deleted.
Console.WriteLine("File: " + e.FullPath + " " + e.ChangeType);
}
private static void OnRenamed(object source, RenamedEventArgs e)
{
// Specify what is done when a file is renamed.
Console.WriteLine("File: {0} renamed to {1}", e.OldFullPath, e.FullPath);
}
OnChange
실제 변경없이 실행 ( 예 : ctrl+s
실제 변경없이 타격 ), 가짜 변경을 감지 할 수있는 방법이 있습니까?
FileSystemWatcher
전용 (즉 OS가 이벤트를 트리거하는 경우) 파일 시스템 레벨에서 이벤트를 감지 할 수있다. 귀하의 경우 Ctrl + S는 그러한 이벤트를 트리거합니다 (발생 여부는 실제 응용 프로그램에 따라 다름).