string oldPath = "D:\\photo\\old\\";
string[] le = System.IO.Directory.GetFiles(oldPath);
int i = le.Length;
for (int c = 0; c < i; c++)
{
//string oldFilename = System.IO.Path.GetFileNameWithoutExtension(le[c]);//获取旧的名称
string newname = oldPath + c.ToString() + System.IO.Path.GetExtension(le[c]); //设置新的名称
File.Copy(le[c], newname, true);
File.Delete(le[c]);
}
- 本文标题: C#循环所有文件并且重命名
- 文章分类:【WinForm/WPF】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.