2014-09-24 71 views
1

我創建了一個文件系統觀察器的Windows服務。它獲取新添加的文件並執行一些過程。它工作正常,但是當我嘗試在同一時間添加更多文件時,它不會按預期工作。只有第一個文件得到執行。任何建議來克服這一點?C#windows服務fileSystemWatcher多個文件在同一時間

+0

你是如何確定事件丟失的?將代碼的相關部分粘貼到您的問題中。 – 2014-09-24 22:06:19

回答

0

這是我的代碼的一部分。我將excel文件上傳到配置文件監視器的特定目錄。

protected override void OnStart(string[] args) 
     { 
      //Set the location for the file watcher 
      fileSystemWatcherPL.Path = @"C:/Temp"; 
     } 

private void fileSystemWatcherPL_Created(object sender, System.IO.FileSystemEventArgs e) 
     { 
//Read the excel file and do some process. 
} 
相關問題