日期:2014-05-17 浏览次数:21179 次
public static bool IsExistsFilePath(string folder)
{
if (!System.IO.Directory.Exists(folder))
{
return false;
}
return true;
}
string path = @"C:\Users\MyFolder\FileWatch"; // watch for parent directory
if (!Directory.Exists(path)) // verify it exists before start
return;
FileSystemWatcher watcher = new FileSystemWatcher(path);
// set option to track directories only
watcher.NotifyFilter = NotifyFilters.DirectoryName;
watcher.Deleted += (o, e) =>
{
if (e.FullPath == @"C:\Users\MyFolder\FileWatch\Test")
{
// If you are here, your test directory was deleted
}
};
watcher.EnableRaisingEvents = true;