我正在使用 C# 2010 开发 Windows 服务,并且正在使用 FileSystemWatcher。由于某种原因,我无法启动我的服务。
当我尝试运行我的服务时,我收到以下消息。
本地计算机上的 -service- 启动和停止。如果某些服务未在其他服务或程序中使用,它们会自动启动。
当我输入这段代码时会发生这种情况:
开始:
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();
}
等待一些可能的答案。先感谢您!