C#文件重命名的方法

使用File.Move方法进行文件重命名操作。 下面是File.Move方法的定义:
public static void Move(
   
string sourceFileName,
   
string destFileName
);
原文地址:https://www.cnblogs.com/pdfw/p/896762.html