XmlTextReader - 它是否锁定文件?

发布于 2024-07-16 01:59:10 字数 128 浏览 12 评论 0原文

这可能是一件非常简单的事情,但我一直无法找到它,而且我可能只是在寻找错误的东西......

XmlTextReader --> 它会锁定您正在读取的文件吗? 我正在使用 reader.Read() ,仅此而已。

This is probably a really simple thing, but I haven't been able to find it, and I'm probably just searching for the wrong thing...

XmlTextReader --> Does it lock the file you're reading? I'm using reader.Read() and that's about it.

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

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

发布评论

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

评论(1

失退 2024-07-23 01:59:10

当您创建一个提供字符串的新XmlTextReader时,它将使用写锁(而不是读锁)锁定文件; 但是,如果您为其提供Stream,则它将取决于流本身。

FileStream stream = new FileStream(@"myfile.xml", FileMode.Open,
                            FileAccess.Read, FileShare.ReadWrite);
XmlTextReader reader = new XmlTextReader(stream);

您现在可以在没有锁的情况下读取。

When you create a new XmlTextReader providing a string, it will lock the file with a write lock (but not a read lock); however, if you provide it a Stream, it would depend on the stream itself.

FileStream stream = new FileStream(@"myfile.xml", FileMode.Open,
                            FileAccess.Read, FileShare.ReadWrite);
XmlTextReader reader = new XmlTextReader(stream);

You can now read without having a lock.

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