如何等待文件完全复制?
我有一个线程轮询文件夹中是否有新文件。问题在于,它看到一个新文件并在该文件被另一个进程完全复制之前就开始处理它。因此,轮询器获取另一个进程使用的文件错误。
有没有办法检查文件是否可以免费使用或收到通知?我们当然可以使用异常处理代码,但是有没有更好的方法呢?
技术:.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们尝试在处理文件之前获取文件的锁定,并在尝试读取文件期间处理 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.