给图片改名程序

时间:2015-10-20 06:10:46
【文件属性】:

文件名称:给图片改名程序

文件大小:568KB

文件格式:RAR

更新时间:2015-10-20 06:10:46

代码 源码 图片批量改名

闲来无事,写着玩的小东东,仅供参考 private void button1_Click(object sender, EventArgs e) { int fileNum; string newFileName = this.txtFilePre.Text.ToString(); string[] fileName; string path = (this.txtFilePath.Text.ToString().Trim()); string file1; string file2; try { if (!Directory.Exists(path)) { MessageBox.Show("该文件夹不存在"); } else //该文件夹存在则修改文件名 { fileName = Directory.GetFiles(path, "*.jpg"); for (fileNum = 0; fileNum < fileName.Length; fileNum++) { file1 = fileName[fileNum].ToString(); if (!File.Exists(file1)) { file2 = path + "\\" + newFileName.ToString() + (fileNum + 1).ToString() + ".jpg"; } else { file2 = path + "\\" + newFileName + (fileNum).ToString() + ".jpg"; } File.Copy(file1, file2); File.Delete(file1); } MessageBox.Show("成功"); } } catch (Exception ee) { MessageBox.Show(ee.ToString()); } }


【文件预览】:
ChangeFileName--改名程序
----ChangeFileName()
--------ChangeFileName.csproj.user(486B)
--------Form1.cs(2KB)
--------ChangeFileName_TemporaryKey.pfx(2KB)
--------Program.cs(495B)
--------ChangeFileName.csproj(6KB)
--------Form1.resx(148KB)
--------Properties()
--------Form1.Designer.cs(8KB)
--------obj()
--------bin()
----ChangeFileName.suo(17KB)
----ChangeFileName.sln(932B)

网友评论