0

我必须处理一个 XML 文件(我正在选择一个带有 OpenFileDialog 的文件 [此处不存在代码],当我单击第二个按钮时,处理 XML 以显示该 XML 的树结构,该 XML 必须保存在另一个文件中) . 但是当我使用 SaveFileDialog 时,我想输入一个尚不存在的文件的文件名。如果我输入不存在的文件名,我应该怎么做,会创建一个空文件?

       private void button2_Click(object sender, EventArgs e)
        {
        SaveFileDialog fDialog = new SaveFileDialog();
        fDialog.Title = "Save XML File";
        fDialog.FileName = "drzewo.xml";
        fDialog.CheckFileExists = false;
        fDialog.InitialDirectory = @"C:\Users\Piotrek\Desktop";

        if (fDialog.ShowDialog() == DialogResult.OK)
        {

            MessageBox.Show(fDialog.FileName.ToString());
        }

        string XMLdrzewo = fDialog.FileName.ToString();
        XDocument xdoc = XDocument.Load(XMLdrzewo);
        //// some code processing xml file
        /// not ready yet, have to write to that file the tree
        //structure of  selected XML file

        textBox2.Text = File.ReadAllText(XMLdrzewo);

当文件不存在时,我得到 FileNotFoundException 未处理。

4

1 回答 1

2

创建文件名的代码应该在 if 语句中。

if (fDialog.ShowDialog == DialogResult.OK)
{

}

然后,您需要先创建一个文件,例如 var stream = File.Create(filename)。然后,您可以用“要创建的东西”填充该文件并将 xml 部分存储在新创建的文件中。

就像是:

if (fDialog.ShowDialog() == DialogResult.OK)
{

    using (var newXmlFile = File.Create(fDialog.FileName);
    {
           var xd = new XmlDocument();
           var root = xd.AppendChild(xd.CreateElement("Root"));
           var child = root.AppendChild(xd.CreateElement("Child"));
           var childAtt = child.Attributes.Append(xd.CreateAttribute("Attribute"));
           childAtt.InnerText = "My innertext";
           child.InnerText = "Node Innertext";
           xd.Save(newXmlFile);
    }
}
于 2013-01-19T10:00:12.520 回答