如何监视文件系统目录以了解文件何时添加到其中?
在 C# winforms 应用程序中,我想从网络中选择一个目录,之后,当任何主体将文件放入其中时,我想看到一条消息,例如“已添加文件”。
例如我可以获取文件路径。
string[] filePaths = Directory.GetFiles(@"c:\MyDir\", "*.bmp");
我应该在 5 分钟后运行此代码并检查差异吗?
In c# winforms application, I want to choose a directory from network and after that, when any body put a file in it, I want to see a message such as "A file added."
for example I can get filepaths.
string[] filePaths = Directory.GetFiles(@"c:\MyDir\", "*.bmp");
should I run this code 5 minutes later and should I check the differences?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 FileSystemWatcher 类并订阅文件系统上发生的不同事件例如创建、删除、修改文件和文件夹……
You could use the FileSystemWatcher class and subscribe for different events happening on the file system such as files and folders being created, deleted, modified, ...