FileSystemWatcher类 - 简单的问题

时间:2011-05-19 21:24:20

标签: c# .net windows

我目前正在玩FileSystemWatcher类想知道如何指定目录路径,但它的所有子文件都是文件夹。所以它会在C:\中的任何地方寻找任何变化,例如C:\ Program Files \ test等。

string DirPath = "C:\\*.*";

我尝试将添加到directroy路径,但没有运气

以下源代码:

static void Main(string[] args)
{
    string DirPath = "C:\\*.*";
    FileSystemWatcher FileWatcher = new FileSystemWatcher(DirPath);
    FileWatcher.Changed += new FileSystemEventHandler(FileWatcher_Changed);
    FileWatcher.Created += new FileSystemEventHandler(FileWatcher_Created);
    FileWatcher.Deleted += new FileSystemEventHandler(FileWatcher_Deleted);
    FileWatcher.Renamed += new RenamedEventHandler(FileWatcher_Renamed);
    FileWatcher.EnableRaisingEvents = true;

    Console.ReadKey();
}

2 个答案:

答案 0 :(得分:7)

使用FileSystemWatcher的IncludeSubdirectories属性。

如果添加行

FileWatcher.IncludeSubdirectories = true;

它将监视指定路径中的所有子目录。

答案 1 :(得分:1)

在所有C上放置文件更改通知:这是一个很糟糕的主意 - 如果你真的想要监控整个卷,你应该使用USN Journal