如果找到/创建了特定目录中的新/现有文件,我需要一个自定义事件。为了检查是否创建了新文件,我使用了 SystemFileWatcher,它工作正常。为了检查程序启动时是否存在某些文件,我写了一些行并且可以。
我将此类用于事件参数:
public class FileDetectEventArgs : EventArgs
{
public String Source { get; set; }
public String Destination { get; set; }
public String FullName { get; set; }
public FileDetectEventArgs(String source, String destination, String fullName)
{
this.Source = source;
this.Destination = destination;
this.FullName = fullName;
}
}
如果 SystemFileWatcher 引发 FileCreated 事件,我将使用以下代码行:
public void onFileCreated(object sender, FileSystemEventArgs e)
{
// check if file exist
if (File.Exists(e.FullPath))
{
OnNewFileDetect(new FileDetectEventArgs(source, destination, e.FullPath));
}
}
如果存在文件,我会尝试以这种方式引发事件:
public void checkExistingFiles(String source, String filter)
{
DirectoryInfo di = new DirectoryInfo(source);
FileInfo[] fileInfos = di.GetFiles();
String fileFilter = filter.Substring(filter.LastIndexOf('.'));
foreach (FileInfo fi in fileInfos)
{
if (fi.Extension.Equals(fileFilter))
{
OnNewFileDetect(new FileDetectEventArgs(source, destination, fi.FullName));
}
}
}
这是 OnNewFileDetect 事件:
protected void OnNewFileDetect(FileDetectEventArgs e)
{
if (OnNewFileDetectEvent != null)
{
OnNewFileDetectEvent(this, e);
}
}
问题是,如果 onFileCreated-Event 引发我的 OnNewFileDetect-Event 一切正常。但是,如果 checkExistingFiles 发现一些现有文件并尝试引发 OnNewFileDetect-Event,则不会发生任何事情。我发现 OnNewFileDetectEvent-Object 为空,所以什么也没发生。但是,如果 onFileCreated-Event 被触发,为什么它不为空?