我有一组 XML 文件,我正在循环遍历并将有错误的文件移动到另一个文件位置。但是,当我使用 system.io.file.move 函数时,它需要我指定文件名而不是移动文件路径。有没有办法可以在保持相同名称的同时将文件从一个位置移动到另一个位置?我目前正在根据文件在数组中的位置创建一个名称,这实际上并不可行。
string ErrorPath = string.Format(@"{1}ErroredXml{0}.xml", errorLength, errorPaths);
//If type equals "add" then call add method else call update
if (Equals(type, typecomp))
{
//pass object to data access layer to add record
value.addNewGamePlay();
if (value.getGamePlayID() == 0)
{
//move to error file
System.IO.File.Move(value.getFile(), ErrorPath);
errorLength++;
}
}