如何写入 C# 中另一个进程正在使用的文件?

发布于 2024-10-09 12:43:01 字数 125 浏览 2 评论 0原文

如何写入 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 技术交流群。

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

发布评论

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

评论(2

撩心不撩汉 2024-10-16 12:43:01

如果其他进程已对文件进行写锁定,那么您无能为力,除非您不介意关闭其他进程的句柄或终止它。

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.

轻许诺言 2024-10-16 12:43:01

您应该将文件内容读取到单独的 Stream,然后释放该文件。

You should read the file contents to a separate Stream and then the file is released.

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