欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

C#实现的文件批量重命名功能示例

时间:2021-03-12 09:53:43|栏目:.NET代码|点击:

本文实例讲述了C#实现的文件批量重命名功能。分享给大家供大家参考,具体如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
//C#批量重命名文件代码的实现
//添加文件操作空间引用
using System.IO;
namespace WindowsApplication1
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    private void Form1_Load(object sender, EventArgs e)
    {
    }
    private void button1_Click(object sender, EventArgs e)
    {
      FolderBrowserDialog f1 = new FolderBrowserDialog();
       if (f1.ShowDialog() == DialogResult.OK)
      {
        textBox3.Text = f1.SelectedPath;
       }
    }
    private void button2_Click(object sender, EventArgs e)
    {
     if (textBox3.Text!=""){
      if(textBox1.Text!="")
      {
       string strOldFileName;
       string strNewFileName;
       string strOldPart = this.textBox1.Text.Trim();
       string strNewPart = this.textBox2.Text.Trim();
       string strNewFilePath;
       string strFileFolder;
       int TotalFiles = 0;
       DateTime StartTime = DateTime.Now;//获取开始时间
       try{
       DirectoryInfo di = new DirectoryInfo(textBox3.Text);
       FileInfo[] filelist = di.GetFiles("*.*");
       strFileFolder = textBox3.Text;
       int i = 0;
        foreach (FileInfo fi in filelist)
        {
          strOldFileName = fi.Name;
          strNewFileName = fi.Name.Replace(strOldPart, strNewPart);
          strNewFilePath = @strFileFolder + "\\" + strNewFileName;
          filelist[i].MoveTo(@strNewFilePath);
          TotalFiles += 1;
          this.listBox1.Items.Add("文件名:" + strOldFileName + "  已重命名为 " + strNewFileName + "");
          i += 1;
      }
      DateTime EndTime = DateTime.Now;//获取结束时间
      TimeSpan ts = EndTime - StartTime;
      this.listBox1.Items.Add("总耗时:" + ts.Hours.ToString() + "时" + ts.Minutes.ToString() + "分" + ts.Seconds.ToString() + "秒"+ ts.Milliseconds.ToString()+"毫秒");
      }
      catch
      {
      MessageBox.Show("路径无效!");
      }
      }
        else
        {
        MessageBox.Show("没有匹配字符");
        }
      }
      else
      {
        MessageBox.Show("请先择择路径!");
      }
    }
  }
}

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#文件操作常用技巧汇总》、《C#遍历算法与技巧总结》、《C#程序设计之线程使用技巧总结》、《C#操作Excel技巧总结》、《C#中XML文件操作技巧汇总》、《C#常见控件用法教程》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#数组操作技巧总结》及《C#面向对象程序设计入门教程

希望本文所述对大家C#程序设计有所帮助。

上一篇:C# WinForm应用程序降低系统内存占用方法总结

栏    目:.NET代码

下一篇:在GridView中LinkButton的属性的应用(如何不用选中就删除这一行)

本文标题:C#实现的文件批量重命名功能示例

本文地址:http://www.codeinn.net/misctech/79091.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有