我需要在不同的时间和有时同时观看几个文件。
我正在使用它作为测试:
namespace FilewatcherTest
{
public partial class Form1 : Form
{
private System.IO.FileSystemWatcher FSWatcherTest;
public Form1()
{
InitializeComponent();
FSWatcherTest = new FileSystemWatcher();
EventHandling();
FSWatcherTest.Path = @"d:\tmp";
FSWatcherTest.Filter = "file.txt";
// Begin watching.
FSWatcherTest.EnableRaisingEvents = true;
}
protected void EventHandling()
{
FSWatcherTest.Changed += FSWatcherTest_Changed;
FSWatcherTest.Deleted += FSWatcherTest_Deleted;
FSWatcherTest.Renamed += FSWatcherTest_Renamed;
FSWatcherTest.Created += FSWatcherTest_Created;
}
private void FSWatcherTest_Changed(object sender, System.IO.FileSystemEventArgs e)
{
WriteToLog("File Changed");
}
private void FSWatcherTest_Created(object sender, System.IO.FileSystemEventArgs e)
{
WriteToLog("File Created");
}
private void FSWatcherTest_Deleted(object sender, System.IO.FileSystemEventArgs e)
{
WriteToLog("File Deleted");
}
private void FSWatcherTest_Renamed(object sender, System.IO.RenamedEventArgs e)
{
WriteToLog("File Renamed");
}
private void WriteToLog(string message)
{
using (var sw = new StreamWriter(@"d:\tmp\service.log", true))
{
sw.WriteLine(string.Format("{0} {1}", DateTime.Now,message));
}
}
}
}
当我进入我创建的服务时,我会更改硬编码路径。
我的问题是,我可以使用相同的文件观察程序,还是应该为每个文件使用唯一的文件观察程序?
如果我使用相同的文件,我怎么知道哪个文件引发了这个事件?
谢谢!
修改 对不起我之前没有使用过filesystemwatcher,也不知道它有什么关系,但文件将在不同的目录中,而不是相同的文件类型。
答案 0 :(得分:2)
我可以使用相同的文件观察程序,还是应该为每个文件使用唯一的文件观察程序?
在您的情况下,我认为没有理由为您正在观看的每个文件创建FileSystemWatcher的新实例。是的,你可以使用同一个。您可以使用诸如“* .txt”之类的过滤器或任何您需要的过滤器来观看一组文件...
如果我使用相同的文件,我怎么知道哪个文件引发了这个事件?
FileSystemEventArgs
具有Name
属性,该属性返回触发事件的文件的名称。
例如:
private void FSWatcherTest_Created(object sender, System.IO.FileSystemEventArgs e)
{
string fileName = e.Name;
WriteToLog("File Created: " + fileName);
}