我正在学习c#,我想检查文件是否存在。如果它存在,它应该加载并写入一个xml文件。如果它不存在,它应该创建它,然后它应该加载并写入xml文件。但如果我点击我的按钮,就会出现错误:
“进程无法访问该文件,因为它正由另一个进程使用。”
在这里你可以看到我的代码:
private void btnSave_Click(object sender, EventArgs e)
{
XElement xmlnode = new XElement("Namespace",
new XElement("RandomText1", textBox1.Text),
new XElement("RandomText2", textBox2.Text),
new XElement("RandomText3", textBox3.Text)
);
XElement xmlFile;
try
{
xmlFile = XElement.Load("testsave.xml");
xmlFile.Add(xmlnode);
}
catch (XmlException)
{
xmlFile = new XElement("Test", xmlnode);
}
xmlFile.Save("testsave.xml");
DataSet ds = new DataSet();
ds.ReadXml("testsave.xml");
DataTable dt = ds.Tables[0];
dataGridView1.DataSource = dt;
}
private void Form1_Load(object sender, EventArgs e)
{
if (!File.Exists("testsave.xml"))
{
File.Create("testsave.xml");
}
}
答案 0 :(得分:5)
问题是File.Create
创建了一个文件并返回FileStream
已打开的文件。因此,当您稍后尝试访问它时,您将获得异常。你必须在以后使用它之前关闭它。
试试这个
using (File.Create("testsave.xml"))
{ }
或者
File.Create("testsave.xml").Close();
答案 1 :(得分:0)
如果您在其他程序中打开该文件,则会发生此错误。如果您已在其他程序中打开它并再次运行您的应用程序,请将其关闭