如何写入 C# 中另一个进程正在使用的文件?
如何写入 C# 中另一个进程使用的文件?
我可以使用 FileShare.ReadWrite
读取文件,但它仅适用于 FileAccess.Read
。有人有解决办法吗?
How can I write to a file which is used by another process in C#?
I am able to read the file using FileShare.ReadWrite
, but it only works for FileAccess.Read
. Does anyone have a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果其他进程已对文件进行写锁定,那么您无能为力,除非您不介意关闭其他进程的句柄或终止它。
If the other process has write-locked the file, then there's not much you can do, unless you don't mind closing the other process's handle or killing it.
您应该将文件内容读取到单独的 Stream,然后释放该文件。
You should read the file contents to a separate Stream and then the file is released.