标签: c# .net c#-4.0
当我使用c#FileSystemWatcher时出现问题。修改doc文件时,它不会引发Changed事件。它仅在创建或删除doc文件时引发事件。 注意:我在Windows 7上测试没问题,但是窗口10没有。
我的代码:
公共类MonitorSyncing { public MonitorSyncing(string monitorPath) { this._monitorPath = monitorPath; }
{{1}}
}