批量重命名文件

别等时光非礼了梦想. 提交于 2019-11-26 19:59:26

批量重命名文件

下述代码用于批量重命名文件。留作备用。

 1 using System;
 2 using System.Collections.Generic;
 3 using System.IO;
 4 using System.Linq;
 5 using System.Text;
 6 using System.Threading.Tasks;
 7 
 8 namespace ConsoleApplication1
 9 {
10     class Program
11     {
12         static void Main(string[] args)
13         {
14             Console.WriteLine("Working...");
15             string[] filenames = System.IO.Directory.GetFiles(".", "*.*", System.IO.SearchOption.AllDirectories);
16             foreach (var item in filenames)
17             {
18                 FileInfo fileInfo = new FileInfo(item);
19                 var newName = fileInfo.Name.Replace("ModernRenderer", "Renderer");
20 
21                 if (newName != fileInfo.Name)
22                 {
23                     Console.WriteLine(item);
24                     System.IO.File.Move(item, Path.Combine(fileInfo.DirectoryName, newName));
25                 }
26             }
27 
28             Console.WriteLine("Done");
29             Console.ReadKey();
30         }
31     }
32 }

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!