看一下System.IO.File.Move ,将文件 “移动” 到新名称。
System.IO.File.Move("oldfilename", "newfilename");
System.IO.File.Move(oldNameFullPath, newNameFullPath);
在 File.Move 方法中,如果该文件已经存在,则不会覆盖该文件。它将引发异常。
因此,我们需要检查文件是否存在。
/* Delete the file if exists, else no exception thrown. */
File.Delete(newFileName); // Delete the existing file if exists
File.Move(oldFileName,newFileName); // Rename the oldFileName into newFileName
或用 try catch 包围它,以避免出现异常。