जवाबों:
वह 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
केवल फाइल सिस्टम के स्तर पर घटनाओं पता लगाने में सक्षम (यानी ओएस एक घटना से चलाता है तो) है। आपके मामले में Ctrl + S ऐसी घटना को ट्रिगर करता है (चाहे ऐसा हो या न हो, हालांकि वास्तविक एप्लिकेशन पर निर्भर करता है)।
का प्रयोग करें FileSystemWatcher
। आप केवल संशोधन घटनाओं के लिए फ़िल्टर कर सकते हैं।