在 C# 中通过网络复制文件夹中的文件

发布于 2024-08-21 16:26:46 字数 176 浏览 5 评论 0原文

我以 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-08-28 16:26:46

为什么不及时运行复印机呢?说每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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文