最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
文件批量重命名的小程序
时间:2022-07-02 23:00:58 编辑:袖梨 来源:一聚教程网
条件,我手动将其剔除,于是有了刚才提到的问题,现在的大量图片文件名不连续了,用Matlab处理时不方便。于是写了个C#小程序用来自动排列图像。
我是,呵呵,如果各位高手有更好的解决方法和算法,多多指教啊。代码如下
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using System.IO;
5 using System.Windows.Forms;
6 // 自动重命名
7 namespace renamebmp
8 {
9 class Program
10 {
11 static void Main(string[] args)
12 {
13 int first = 1; //起始图片编号
14 int last = 301; //结束图片编号
15 int temp;
16 string path1; //寻找到的第一个空位置
17 string path2; //寻找到的空位置后的最小编号图片文件路径
18 int count = 0; //图片数量
19 string temppath = "";
20 for (int k = first; k <= last; k++)
21 {
22 temppath = "F:test6" + k.ToString() + ".bmp";
23 if (File.Exists(temppath))
24 count++;
25 }
26 for (int i = first; i <= count; i++)
27 {
28 temp = i + 1;
29 path1 = "F:test6" + i.ToString() + ".bmp";if (!File.Exists(path1))
31 {
32 path2 = "F:test6" + temp.ToString() + ".bmp";
33 while (!File.Exists(path2))
34 {
35 temp++;
36 if (temp == last)
37 {
38 path2 = "F:test6" + last.ToString() + ".bmp";
39 break;
40 }
41 path2 = "F:test6" + temp.ToString() + ".bmp";
42 }
43 File.Move(path2, path1); // 使用move方法重命名
44 }
45 }
46 MessageBox.Show("排序完毕,排序后图片数量为 "+count.ToString());
47 }
48 }
49 }
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22