本文要实现的功能是 文件批量重命名,当选择一个文件夹时,通过操作可以把文件夹下面所有文件进行重命名。建立了HoverTreeBatch项目。
然后
定义文件夹信息:
DirectoryInfo _TheFolder;
//这里是选择文件夹并实例化_TheFolder
FileInfo[] _files=null;
_files = _TheFolder.GetFiles();
这样就得到了文件夹下所有文件信息。
//加后缀
foreach (FileInfo fi in _files)
{
HoverTreeAddSuffix(fi, textBox_text.Text);
}
这里用到了HoverTreeAddSuffix 方法,这个方法就是为文件加后缀重命名的。
以上是实现文件批量加后缀的核心代码,通过ListView等控件,可以方便的进行操作,最终实现了一个WinForm程序,界面如下:
软件和HoverTreeBatch项目源码下载:http://hovertree.com/h/bjaf/5qc5eh6y.htm
https://github.com/shangyuxian/HoverTreeBatch
附:
HoverTreeAddSuffix方法代码:
void HoverTreeAddSuffix(FileInfo fi,string suffix) { string h_newFielName = fi.DirectoryName + "//" + Regex.Replace(fi.Name, @"/" + fi.Extension + "$", "", RegexOptions.IgnoreCase) + suffix + fi.Extension; fi.MoveTo(h_newFielName); }
本文网址:http://www.VEVb.com/renwu/p/piliang.html
新闻热点
疑难解答