如何使用旧的xml文件名保存新的xml文件,但最后添加“ -New”?

时间:2019-05-02 09:24:12

标签: c# .net xml

var reader = new Reader();
reader.Wash(@"C:\Users\Adam_\Desktop\MiP\test.xml", ????);

public void Wash(string path, string savePath)
{
  var doc = new XmlDocument();
  doc.Load(path);

  doc = Wash(doc);

 if (Directory.Exists(savePath))
 {
   Directory.CreateDirectory(savePath);
 }

   doc.Save(savePath);
}

我希望savePath创建一个新的XML文件,其中包含test文件中的名称,但最后要添加-new

因此新文件名为test-new

0 个答案:

没有答案