在 C# 中通过网络复制文件夹中的文件
我以 2 秒的间隔通过“TCP/IP 网络”在某个端口 X 上从主机接收文件夹中的文件。我需要一个服务/观察程序将这些文件复制到其他位置。我尝试了 FileSystemWatcher,但似乎一旦将字节写入磁盘,观察程序的“Created 事件”就会被触发。
实现这一目标的最佳方法是什么?
I receive Files in a Folder at say 2 secs interval from a host machine over " a TCP/IP network" at some Port X. I need to have a service / watcher which will copy these Files to other location. I tried FileSystemWatcher, but it seems that the "Created event" of the watcher gets fired as soon as a byte is getting written to disk.
What is the best way to accomplish this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不及时运行复印机呢?说每1分钟复制一次文件。
FileSystemWatcher 似乎不是一个好的选择变化发生得更频繁的地方。
Why not run the copier on a timely basis? Say every 1 minute and copy files.
FileSystemWatcher doesn't seem to be a good option where changes happen more frequently.