如何等待文件完全复制?

发布于 2024-09-16 19:00:41 字数 320 浏览 5 评论 0原文

我有一个线程轮询文件夹中是否有新文件。问题在于,它看到一个新文件并在该文件被另一个进程完全复制之前就开始处理它。因此,轮询器获取另一个进程使用的文件错误。

有没有办法检查文件是否可以免费使用或收到通知?我们当然可以使用异常处理代码,但是有没有更好的方法呢?

技术:.NET 2.0/C#

更新:

  • 从其他答案中发现,如果我们有权访问编写文件的应用程序,那么更好的设计是从其他扩展名 .tmp 开始,然后在复制后重命名。

  • 如果我们不控制源应用程序,则可以使用 FileStream.Lock

I have a thread which polls a folder for new files. The problem is that it sees a new file and starts working on it even before the file has been completely copied by another process. Because of this the poller gets file used by another process error.

Is there a way to check the file is free to use or get notified? We can certainly use exception handling code, but is there a better way?

Tech: .NET 2.0/C#

Update:

  • Found out from other answers that if we have access to the app writing the file then better design is to start with some other extension .tmp and then rename it after copying.

  • The FileStream.Lock could be used if we don't control the source application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

∞琼窗梦回ˉ 2024-09-23 19:00:41

我们尝试在处理文件之前获取文件的锁定,并在尝试读取文件期间处理 IOException 而不是一般异常。

请参阅 FileStream.Lock< MSDN 上的 /a>。

We attempt to get a lock on the file before processing it and handle the IOException rather than a generic exception during the attempt to read the file.

See FileStream.Lock on MSDN.

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