Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有以下代码,用于将 XML 字符串附加到文件 ValidationXmlNew.xml。它没有抛出任何异常,文件仍然是空的。我也尝试设置文件的权限,仍然没有运气。有人可以帮我解决这个问题
using (StreamWriter w = File.AppendText("ValidationXmlNew.xml")) { w.WriteLine(XMLString); }
不太确定文件是否在当前目录以外的其他地方创建