C#修改文件名方法

static void Main(string[] args)
{
string srcFileName = @"c:\order.txt";
string destFileName = @"c:\abcd.txt";
if (File.Exists(srcFileName))
{
File.Move(srcFileName, destFileName);
}
}

Move函数参数(原始文件名,目标文件名);
---------------------
作者:学_无止境_
来源:CSDN
原文:https://blog.csdn.net/zhangxxxxxxu/article/details/52181120
版权声明:本文为博主原创文章,转载请附上博文链接!

上一篇:SQL编码乱码解决方法


下一篇:JVM内存管理------杂谈(借此也论一论obj=null)