我們知道在.NET(C#是特定的)中,我們可以使用FileSystemWatcher
來檢測任何類型的修改。當我用FileSystemWatcher觀看文件時可以刪除文件嗎?
public void MessageFileWatcher(string Path, string FileName)
{
FileSystemWatcher Watcher = new FileSystemWatcher();
Watcher.Path = Path;
Watcher.Filter = FileName;
Watcher.NotifyFilter = NotifyFilters.LastWrite;
Watcher.Changed += new FileSystemEventHandler(OnChanged);
Watcher.EnableRaisingEvents = true;
}
但我想留在一個文件上,一段時間後也想刪除該文件。
確切地說,可以FileSystemWatcher
類總是尋找修改...如果我想刪除該特定的文件,它會引發異常?
試試看並找出答案? – jason