我有一个小的 vb.net 应用程序利用连接到 UNC 路径的 FileSystemWatcher,在未引发来自观察者的未确定时间段(< 天)事件之后。
我正在捕获文件创建事件并将路径传递给 processfile 代码块:
Private Sub fsWatch1_Created(ByVal sender As Object, ByVal e AsSystem.IO.FileSystemEventArgs) Handles fsWatch1.Created
'file created in path - process it!
ProcessFile(e.FullPath)
End Sub