用 XmlTextWriter 覆盖?
简单的问题,如何用 xmltextwriter 覆盖?
我使用 var writer = new XmlTextWriter(exam.Path, null); 。 所以,如果我有一个新文档,它会按我应该的方式编写。
但是如果该文档已经存在,我如何用新文档覆盖该文档?
Simple question, how do i overwrite with a xmltextwriter?
I use var writer = new XmlTextWriter(exam.Path, null);
.
SO if i have a new document it writes as i should be.
But if the document already exists, how do i overwrite this document by a new document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档指出,您的使用将截断该文件并用新的覆盖它内容。
The documentation states that your usage will truncate the file and overwrite it with new content.
如果您想覆盖该文件并找到当前的方法追加,您可以尝试事先删除有问题的文件。
例如
If you want to overwrite the file and find your current method appends instead you could try and delete the file in question beforehand.
e.g.