说明(2017-11-17 14:46:05):

1. 因为经常要从U盘里面删除版本,然后添加版本,每次都要几个人手动复制粘贴,费时费力,就花了一下午时间写了个程序,自动删除和添加版本。

2. DriverInfo类可以识别插到电脑的U盘,还能识别U盘容量。

3. 现在是先全部删除选中版本,再一个U盘一个U盘的往里拷贝,不知道用多线程是否能同时拷贝。

4. 如果遇到有一个U盘不能读取,软件会报错,提示未检测到路径,可以加个判断,判断一下U盘路径是否存在。不过我懒得改了,用之前先用刻盘软件检查一下有没有坏盘就好了。

5. 如果遇到里面已经存在这个版本了,目前是直接覆盖,不然会报错提示文件已存在,这里也可以判断一下是否存在这个文件,我也懒得改了。

6. 用c#在Windows系统操作文件还是很方便的,也不用找这个库那个库,我猜想如果用python做,估计找库就得找死,而且也没什么界面。

软件界面:

Form1.cs

 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Text.RegularExpressions; namespace ChangeBin
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//主程序
private void Form1_Load(object sender, EventArgs e)
{
ShowSource();
List<string> UdiskNames = GetUdiskNames();
//foreach (string udiskName in UdiskNames)
//{
// Console.WriteLine(udiskName);
//} } private string[] GetInsertFileName()
{
List<string> fileNames = new List<string>();
string[] chineseFile = Directory.GetFiles("../../res/1_语文");
string[] mathFile = Directory.GetFiles("../../res/2_数学");
string[] englishFile = Directory.GetFiles("../../res/3_英语"); foreach (string name in chineseFile)
{
fileNames.Add(name);
}
foreach (string name in mathFile)
{
fileNames.Add(name);
}
foreach (string name in englishFile)
{
fileNames.Add(name);
}
return fileNames.ToArray(); }
//全选右侧
private void cb7_CheckedChanged(object sender, EventArgs e)
{
if (cb7.Checked)
{
for (int i = ; i < clb4.Items.Count; i++)
{
clb4.SetItemChecked(i, true);
}
for (int i = ; i < clb5.Items.Count; i++)
{
clb5.SetItemChecked(i, true);
}
for (int i = ; i < clb6.Items.Count; i++)
{
clb6.SetItemChecked(i, true);
}
}
else
{
for (int i = ; i < clb4.Items.Count; i++)
{
clb4.SetItemChecked(i, false);
}
for (int i = ; i < clb5.Items.Count; i++)
{
clb5.SetItemChecked(i, false);
}
for (int i = ; i < clb6.Items.Count; i++)
{
clb6.SetItemChecked(i, false);
}
} } //清除左侧
private void btnClear1_Click(object sender, EventArgs e)
{
for (int i = ; i < clb1.Items.Count; i++)
{
clb1.SetItemChecked(i, false);
}
for (int i = ; i < clb2.Items.Count; i++)
{
clb2.SetItemChecked(i, false);
}
for (int i = ; i < clb3.Items.Count; i++)
{
clb3.SetItemChecked(i, false);
}
} //显示进度
private void cbShowBack_CheckedChanged(object sender, EventArgs e)
{
BackGround bg = new BackGround();
bg.Show();
} //获取U盘里的需要删除的文件路径(怎么获取U盘容量??????名字 ??)
private List<string> GetUdiskNames()
{
List<string> diskNames = new List<string>();
DriveInfo[] driveInfo = DriveInfo.GetDrives();
//15711846400byte
foreach (DriveInfo d in driveInfo)
{
if (d.DriveType == DriveType.Removable)
{
diskNames.Add(d.Name);
}
}
return diskNames;
} //显示主页面
private void ShowSource()
{
//获取需要拷贝的bin包名字和路径
string[] chineseFile = Directory.GetFiles("../../res/1_语文");
string[] mathFile = Directory.GetFiles("../../res/2_数学");
string[] englishFile = Directory.GetFiles("../../res/3_英语"); List<string> chineseFileName = new List<string>();
List<string> mathFileName = new List<string>();
List<string> englishFileName = new List<string>();
foreach (string name in chineseFile)
{
chineseFileName.Add(Regex.Split(name, @"1_语文\\")[]);
}
foreach (string name in mathFile)
{
mathFileName.Add(Regex.Split(name, @"2_数学\\")[]);
}
foreach (string name in englishFile)
{
englishFileName.Add(Regex.Split(name, @"3_英语\\")[]);
}
//把需要拷贝的文件名加入选择列表
clb4.Items.AddRange(chineseFileName.ToArray());
clb5.Items.AddRange(mathFileName.ToArray());
clb6.Items.AddRange(englishFileName.ToArray());
} //获取删除列表
private List<string> GetDeleteList()
{
List<string> UdiskNames = GetUdiskNames();
List<string> delNames = new List<string>();
List<string> delPaths = new List<string>();
foreach (var item in clb1.CheckedItems)
{
delNames.Add(item.ToString());
}
foreach (var item in clb2.CheckedItems)
{
delNames.Add(item.ToString());
}
foreach (var item in clb3.CheckedItems)
{
delNames.Add(item.ToString());
}
foreach (string udiskName in UdiskNames)
{
foreach (string delName in delNames)
{
if (delName.Contains("语文"))
{
delPaths.Add(udiskName + @"Root\Data\res\1_语文\" + delName + @".bin");
}
else if (delName.Contains("数学"))
{
delPaths.Add(udiskName + @"Root\Data\res\2_数学\" + delName + @".bin");
}
else if (delName.Contains("英语"))
{
delPaths.Add(udiskName + @"Root\Data\res\3_英语\" + delName + @".bin");
} }
}
return delPaths;
}
//获取插入列表
private List<string> GetInsertList()
{
List<string> InsertList = new List<string>();
//获取需要拷贝的bin包名字和路径
string[] chineseFile = Directory.GetFiles("../../res/1_语文");
string[] mathFile = Directory.GetFiles("../../res/2_数学");
string[] englishFile = Directory.GetFiles("../../res/3_英语");
foreach (string file in chineseFile)
{
InsertList.Add(file);
}
foreach (string file in mathFile)
{
InsertList.Add(file);
}
foreach (string file in englishFile)
{
InsertList.Add(file);
}
foreach (string item in InsertList)
{
Console.WriteLine(item);
}
return InsertList;
} //点击开始,开始删除,插入(要不要分开进行?????)
private void btnStart_Click(object sender, EventArgs e)
{
//删除
List<string> UdiskNames = GetUdiskNames();
List<string> delPaths = GetDeleteList();
if (delPaths.Count > )
{
foreach (string delPath in delPaths)
{
//Console.WriteLine(delPath); if (File.Exists(delPath))
{
File.Delete(delPath);
Console.WriteLine("已删除" + delPath);
}
else
{
//为啥删完还会显示不存在?循环了两次?还是delPath里面存了两遍?
Console.WriteLine(delPath + "不存在");
} }
}
else
{
MessageBox.Show("没有要删除的bin包");
}
//插入
//获取需要拷贝的bin包名字和路径
List<string> insertList = GetInsertList();
List<string> chineseFileName = new List<string>();
List<string> mathFileName = new List<string>();
List<string> englishFileName = new List<string>(); if (insertList.Count > )
{
foreach (string uDiskName in UdiskNames)
{
foreach (string insertFile in insertList)
{
if (File.Exists(insertFile))
{
string desFileName = null;
string insertFileName = null;
if (insertFile.Contains("语文"))
{
insertFileName = Regex.Split(insertFile, @"1_语文\\")[];
desFileName = uDiskName + @"Root\Data\res\1_语文\" + insertFileName;
}
else if (insertFile.Contains("数学"))
{
insertFileName = Regex.Split(insertFile, @"2_数学\\")[];
desFileName = uDiskName + @"Root\Data\res\2_数学\" + insertFileName;
}
else if (insertFile.Contains("英语"))
{
insertFileName = Regex.Split(insertFile, @"3_英语\\")[];
desFileName = uDiskName + @"Root\Data\res\3_英语\" + insertFileName;
}
if (desFileName != null)
{
//第三个参数是否允许覆盖???
File.Copy(insertFile, desFileName,true);
Console.WriteLine("已插入:" + desFileName);
}
}
else
{
Console.WriteLine("插入文件:" + insertFile + "不存在");
}
}
} }
MessageBox.Show("拷贝完毕!");
}
}
}

C#学习笔记(25)——用刻盘器批量从U盘删除添加文件的更多相关文章

  1. IOS学习笔记25—HTTP操作之ASIHTTPRequest

    IOS学习笔记25—HTTP操作之ASIHTTPRequest 分类: iOS2012-08-12 10:04 7734人阅读 评论(3) 收藏 举报 iosios5网络wrapper框架新浪微博 A ...

  2. JVM学习笔记-第三章-垃圾收集器与内存分配策略

    JVM学习笔记-第三章-垃圾收集器与内存分配策略 tips:对于3.4之前的章节可见博客:https://blog.csdn.net/sanhewuyang/article/details/95380 ...

  3. Linux学习笔记(4)磁盘分区(fdisk)、挂载与文件系统命令

    Linux学习笔记(4)磁盘分区(fdisk).挂载与文件系统命令 1.磁盘分区是怎么表示的? 1.1 对于IDE接口,第一主盘为hda,第1从盘为hdb,第1从盘的第1个分区为hdb1 1.2 对于 ...

  4. linux命令学习笔记(25):linux文件属性详解

    Linux 文件或目录的属性主要包括:文件或目录的节点.种类.权限模式.链接数量.所归属的用户和用户组. 最近访问或修改的时间等内容.具体情况如下: 命令: ls -lih 输出: [root@loc ...

  5. ‎Cocos2d-x 学习笔记(25) 渲染 绘制 Render

    [Cocos2d-x]学习笔记目录 本文链接:https://www.cnblogs.com/deepcho/p/cocos2dx-render.html 1. 从程序入口到渲染方法 一个Cocos2 ...

  6. Docker技术入门与实战 第二版-学习笔记-8-网络功能network-3-容器访问控制和自定义网桥

    1)容器访问控制 容器的访问控制,主要通过 Linux 上的 iptables防火墙来进行管理和实现. iptables是 Linux 上默认的防火墙软件,在大部分发行版中都自带. 容器访问外部网络 ...

  7. [原创]java WEB学习笔记25:MVC案例完整实践(part 6)---新增操作的设计与实现

    本博客为原创:综合 尚硅谷(http://www.atguigu.com)的系统教程(深表感谢)和 网络上的现有资源(博客,文档,图书等),资源的出处我会标明 本博客的目的:①总结自己的学习过程,相当 ...

  8. python学习笔记(5)--迭代器,生成器,装饰器,常用模块,序列化

    生成器 在Python中,一边循环一边计算的机制,称为生成器:generator. 如: >>> g = (x * x for xin range(10)) >>> ...

  9. LearnOpenGL学习笔记(四)——着色器类编写

    之前我们将着色器的代码用glsl写好之后,保存为字符串指针,然后用一个函数去编译它,这是一种手段,对于简单的着色器代码可以这样.但当我们针对复杂的着色器,我们发现编写.编译.管理着色器是一件麻烦事.我 ...

随机推荐

  1. C# 进制转换(二进制、十六进制、十进制互转)

    原文地址:https://www.cnblogs.com/icebutterfly/p/8884023.html C# 进制转换(二进制.十六进制.十进制互转)由于二进制数在C#中无法直接表示,所以所 ...

  2. 自己写的一个Solr搜索实例,增删改查+高亮+分页

    今天个人coding的模块测试,所以闲暇之余继续研究solr,然后顺带写了一个实例,随便搞的,solr真心不熟,期待认识热爱搜索的朋友,共同进步. 1.配置schema.xml文件[solr\coll ...

  3. TCP连接的TIME_WAIT过多导致 Tomcat 假死

    最近发现使用的Tomcat 7会经常假死.前端点击页面无任何反应,打开firebug,很多链接一直在等待服务器的反应.查看服务器的状态,CPU占用很少,最多不超过10%,一般只有2%,3%左右,内存占 ...

  4. MVC图片上传详解 IIS (安装SSL证书后) 实现 HTTP 自动跳转到 HTTPS C#中Enum用法小结 表达式目录树 “村长”教你测试用例 引用provinces.js的三级联动

    MVC图片上传详解   MVC图片上传--控制器方法 新建一个控制器命名为File,定义一个Img方法 [HttpPost]public ActionResult Img(HttpPostedFile ...

  5. React icon bak

  6. 【转】dubbo各种协议

    原文地址:http://dubbo.io/User+Guide-zh.htm#UserGuide-zh-协议参考手册 协议参考手册 (+) (#) 推荐使用Dubbo协议 性能测试报告各协议的性能情况 ...

  7. 独立的android开发者开发app如何盈利?

    对立android开发者开发app如何盈利?android开发日益兴隆,随着google的大力推广和技术及其android培训的支持,android个人开发者或者android独立开发者也都匆匆欲动加 ...

  8. mysql数据导入遇到的timestamp类型问题

    今天准备把最新的表导入自己以前的机子上做临时开发,在数据库导入的时候遇到一个问题:Incorrect table definition; there can be only one TIMESTAMP ...

  9. Windows 上 怎么安装 install elasticsearch plugin

    D:\elasticsearch-5.2.1\bin>elasticsearch-plugin install file:///D:/elasticsearch -5.2.1/bin/elast ...

  10. elk 的报错和优化

    参数调整 elasticsearch.yml配置文件里面,调整http.max_content_length: 500mb 这个默认就100m 建议调大 之前有过报错 #如果队列满了logstash就 ...