我正在开发一个使用 C# 2010 的 Windows Service, 使用 FileSystem 观察器。 出于某种原因, 我无法开始我的服务 。
当我试图履行我的职责时,我收到以下信息。
- 本地计算机上的服务开始和停止,有些服务如果未用于其他服务或程序,则自动启动。
当我把这个代码拼起来时, 就会发生这种情况:
启动 :
FSWatcherTest.Path = ConfigurationManager.AppSettings["WatchPath"].ToString();
然后在一种方法中:
private void InitializeComponent()
{
this.FSWatcherTest = new FileSystemWatcher();
((System.ComponentModel.ISupportInitialize)(this.FSWatcherTest)).BeginInit();
this.FSWatcherTest.EnableRaisingEvents = true;
this.FSWatcherTest.Path = "my path";
this.FSWatcherTest.Changed += new FileSystemEventHandler(this.FSWatcherTest_Changed_1);
((ISupportInitialize)(this.FSWatcherTest)).EndInit();
}
等待一些可能的答案 提前感谢!