基本信息
源码名称:C#【文件夹】和【文件】的重命名
源码大小:0.90M
文件格式:.rar
开发语言:C#
更新时间:2015-09-16
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 5 元×
微信扫码支付:5 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
【所有子目录】:将左侧选择的目录 的所有子目录添加到右侧的ListView里
【所有子目录】:将左侧选择的目录及子目录的所有文件添加到右侧的ListView里【添加到处理】:将左侧选择的目录里的文件添加到右侧ListView里
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Collections;
using System.Globalization;
using System.Runtime.InteropServices;
using ShellDll;
using System.IO;
using FileBrowser;
namespace FileReName
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
}
private Config config;
private void myfileBrowser_ContextMenuMouseHover(object sender, ContextMenuMouseHoverEventArgs e)
{
helpInfoLabel.Text = e.ContextMenuItemInfo;
}
private void myfileBrowser_SelectedFolderChanged(object sender, SelectedFolderChangedEventArgs e)
{
Icon icon = ShellImageList.GetIcon(e.Node.ImageIndex, true);
if (icon != null)
{
currentDirInfo.Image = icon.ToBitmap();
this.Icon = icon;
}
else
{
currentDirInfo.Image = null;
this.Icon = null;
}
currentDirInfo.Text = e.Node.Text;
this.Text = e.Node.Text;
}
private void tspbtnFolders_CheckedChanged(object sender, EventArgs e)
{
dualPane.Panel1Collapsed = !dualPane.Panel1Collapsed;
}
private void tspbtnOpenDir_Click(object sender, EventArgs e)
{
try
{
//判断最后一行数据是否是已经处理的文件
int nCount = fileView.Items.Count;
if (nCount > 1)
{
if (fileView.Items[nCount - 1].SubItems[0].Text.Substring(0, 3) == "总耗时")
{
tspbtnClearAll_Click(null, null);
}
}
using (FolderBrowserDialog folderdlg = new FolderBrowserDialog())
{
// Set the help text description for the FolderBrowserDialog.
folderdlg.Description = "选择需要处理的文件夹";
// Do not allow the user to create new files via the FolderBrowserDialog.
folderdlg.ShowNewFolderButton = false;
// Default to the My Documents folder.
folderdlg.RootFolder = Environment.SpecialFolder.Desktop;
// Show the FolderBrowserDialog.
DialogResult result = folderdlg.ShowDialog();
if (result == DialogResult.OK)
{
string strfolderName = folderdlg.SelectedPath;
DirectoryInfo di = new DirectoryInfo(strfolderName);
FileInfo[] filelist = di.GetFiles("*.*");
foreach (FileInfo fi in filelist)
{
this.fileView.Items.Add(fi.FullName);
}
}
}
}
catch (Exception ee)
{
MessageBox.Show(ee.Message);
}
}
private void tspbtnOpenFile_Click(object sender, EventArgs e)
{
try
{
//判断最后一行数据是否是已经处理的文件
int nCount=fileView.Items.Count;
if (nCount > 1)
{
if (fileView.Items[nCount - 1].SubItems[0].Text.Substring(0, 3) == "总耗时")
{
tspbtnClearAll_Click(null, null);
}
}
using (OpenFileDialog openFiledDialog = new OpenFileDialog())
{
openFiledDialog.Multiselect = true;
openFiledDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
openFiledDialog.Filter = "图片文件(*.bmp;*.gif;*.jpg;*.png)|*.BMP;*.GIF;*.JPG;*.PNG|文本文件(*.txt)|*.txt|压缩文件(*.rar;*.zip)|*.rar;*.zip|所有文件(*.*)|*.*";
openFiledDialog.FilterIndex = 1;
if (openFiledDialog.ShowDialog() == DialogResult.OK)
{
foreach (string file in openFiledDialog.FileNames)
{
string fileName = System.IO.Path.GetFullPath(file);
ListViewItem item = new ListViewItem(new string[] { fileName });
fileView.Items.Add(item);
}
}
}
}
catch (Exception ee)
{
MessageBox.Show(ee.Message);
}
}
private void tspbtnSetID_Click(object sender, EventArgs e)
{
frmSetId frm = new frmSetId();
frm.ShowDialog();
}
private void tspbtnOK_Click(object sender, EventArgs e)
{
try
{
int nCount = fileView.Items.Count;
if (nCount < 1)
{
MessageBox.Show("请选择要处理的文件!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
config = new Config();
config.cfgFile = Utility.ProstrConfigName;
string strHeader="";
string strLength = "";
string strFooter = "";
string strBegin = "";
bool bIsDefault =false;//默认处理方式
if (config.GetValue("//appSettings//add[@key='Default']") == "1")
{
bIsDefault = true;
strLength = config.GetValue("//appSettings//add[@key='Length']");
strBegin = "1";
}
else
{
//获取重命名规则:CCAV-1-NB
strHeader = Utility.ProstrHeader;//前缀:如 CCAV-
strLength = Utility.ProstrLength;//序数增长步长 # 代表一位数
strFooter = Utility.ProstrFooter;//后缀(非后缀名,仅仅后缀修饰如 -NB)
strBegin = Utility.ProstrBegin;//开始序数,比如从 1 开始递增
}
if (strHeader == "" && strLength == "" && strFooter == "" && strBegin == "")
{
//如未设置规则提示设置
frmSetId frm = new frmSetId();
if (frm.ShowDialog() == DialogResult.OK)
{
strHeader = Utility.ProstrHeader;
strLength = Utility.ProstrLength;
strFooter = Utility.ProstrFooter;
strBegin = Utility.ProstrBegin;
}
else
{
return;
}
}
int TotalFiles = 0;//获取处理文件个数
DateTime StartTime = DateTime.Now;//获取开始时间
//获取步长/和步长序数
int nXushu = Convert.ToInt32(strBegin);
for (int i = 0; i < nCount; i )
{
//获取Listview中的文件
string strfile = fileView.Items[i].SubItems[0].Text;
if (strfile != "" && System.IO.File.Exists(strfile))
{//检验是否是文件路径格式
string strDirName = System.IO.Path.GetDirectoryName(strfile);
strBegin = nXushu.ToString().PadLeft(strLength.Length, '0');//针对二位数步长
if (bIsDefault)//默认处理
{
strHeader = strDirName.Substring(strDirName.LastIndexOf('\\') 1) "_";//如果是默认处理则获取文件夹名称
}
string strFileNameFormat = strHeader strBegin strFooter;
string strFilePath;//设置文件保存路径
string strDirectory = config.GetValue("//appSettings//add[@key='Directory']");//设置保存路径
if (strDirectory=="0")
{
strFilePath = strDirName;// strfile.Substring(0, strfile.LastIndexOf('\\'));//原始路径
}
else if (strDirectory=="-1")
{//创建子目录
strFilePath = strfile.Substring(0, strfile.LastIndexOf('\\')) "\\" strDirName.Substring(strDirName.LastIndexOf('\\') 1);//路径
if (!Directory.Exists(strFilePath))
{
DirectoryInfo DirInfo = Directory.CreateDirectory(strFilePath);//用于创建指定目录的文件夹
}
}
else
{//指定路径
strFilePath = strDirectory;
}
string strFileName = strfile.Substring(strfile.LastIndexOf('\\') 1);//文件名
string strFileExt = strFileName.Substring(strFileName.LastIndexOf('.'));//文件后缀
string strNewFile = strFilePath "\\" strFileNameFormat strFileExt;//新文件名
if (strDirectory == "0")
{
File.Move(strfile, strNewFile);//改文件名
}
else
{
File.WriteAllBytes(strNewFile, File.ReadAllBytes(strfile));//复制
}
fileView.Items[i].SubItems[0].Text = strNewFile;
nXushu = 1;
TotalFiles = 1;
}
}
//重新加载该目录到ListView
DateTime EndTime = DateTime.Now;//获取结束时间
TimeSpan ts = EndTime - StartTime;
this.fileView.Items.Add("总耗时:" ts.Hours.ToString() "时" ts.Minutes.ToString() "分" ts.Seconds.ToString() "秒;" "共处理:" TotalFiles.ToString() "个文件…");
}
catch (Exception ee)
{
MessageBox.Show(ee.Message);
}
}
private void tspbtnExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void tspbtnAllDir_Click(object sender, EventArgs e)
{
String[] dirs = Directory.GetDirectories(@"C:\");
//fileView.Items.AddRange(
}
private void tspbtnAllFile_Click(object sender, EventArgs e)
{
}
private void tspbtnAdd_Click(object sender, EventArgs e)
{
}
private void tspbtnClearCheck_Click(object sender, EventArgs e)
{
int nmaxselect = fileView.SelectedItems.Count;
for (int i = 0; i < nmaxselect; nmaxselect--)
{
fileView.Items.RemoveAt(fileView.SelectedItems[0].Index);
}
}
private void tspbtnClearAll_Click(object sender, EventArgs e)
{
fileView.Items.Clear();
}
private void frmMain_Load(object sender, EventArgs e)
{
int nWidth = fileView.Width;
fileView.FullRowSelect = true;
fileView.View = View.Details;
fileView.Columns.Add("文件", nWidth);
}
private void fileView_DoubleClick(object sender, EventArgs e)
{
try
{
int nSelectFile = fileView.SelectedItems.Count;
for (int i = 0; i < nSelectFile; nSelectFile--)
{
string strfile = fileView.SelectedItems[0].Text;
if (strfile != "" && System.IO.File.Exists(strfile))
{
System.Diagnostics.Process.Start(strfile);
}
}
}
catch (Exception ee)
{
MessageBox.Show(ee.Message);
}
}
}
}