<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
/// <summary> /// 拷貝檔案到另一個資料夾下 /// </summary> /// <param name="sourceName">原始檔路徑</param> /// <param name="folderPath">目標路徑(目標資料夾)</param> public void CopyToFile(string sourceName, string folderPath) { //例子: //原始檔路徑 //string sourceName = @"D:SourceTest.txt"; //目標路徑:專案下的NewTest資料夾,(如果沒有就建立該資料夾) //string folderPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "NewTest"); if (!Directory.Exists(folderPath)) { Directory.CreateDirectory(folderPath); } //當前檔案如果不用新的檔名,那麼就用原檔案檔名 string fileName = Path.GetFileName(sourceName); //這裡可以給檔案換個新名字,如下: //string fileName = string.Format("{0}.{1}", "newFileText", "txt"); //目標整體路徑 string targetPath = Path.Combine(folderPath, fileName); //Copy到新檔案下 FileInfo file = new FileInfo(sourceName); if (file.Exists) { //true 為覆蓋已存在的同名檔案,false 為不覆蓋 file.CopyTo(targetPath, true); } }
注意方法內註釋的用法,可以根據自己的需要更改。
時常我們會遇到檔案的複製、上傳等問題。特別是自動化生產方面,需要對機臺丟擲的檔案進行搬運、收集,然後對資料裡的資料等進行分析,等等。
Winform下,列舉集中較常見的檔案的搬運。
private void MoveFile() { string Frompath = @"D:TestOutPut"; string directoryPath = @"D:report"; try { string[] picList = Directory.GetFiles(Frompath, "*.jpg"); //圖片 string[] txtList = Directory.GetFiles(Frompath, "*.txt"); //文字檔案 string[] pdfList = Directory.GetFiles(Frompath, "*.pdf"); //PDF檔案 foreach (string f in picList) { //取得檔名. string fName = f.Substring(Frompath.Length + 1); File.Copy(Path.Combine(Frompath, fName), Path.Combine(directoryPath, fName), true); } foreach (string f in txtList) { string fName = f.Substring(Frompath.Length + 1); try { File.Copy(Path.Combine(Frompath, fName), Path.Combine(directoryPath, fName)); } // 捕捉異常. catch (IOException copyError) { MessageBox.Show(copyError.Message); } } foreach (string f in pdfList) { string fName = f.Substring(Frompath.Length + 1); try { File.Copy(System.IO.Path.Combine(Frompath, fName), System.IO.Path.Combine(directoryPath, fName)); } catch (IOException copyError) { MessageBox.Show(copyError.Message); return; } } //刪除原始資料夾裡的檔案 foreach (string f in txtList) { File.Delete(f); } foreach (string f in picList) { File.Delete(f); } foreach (string f in pdfList) { File.Delete(f); } } catch (DirectoryNotFoundException dirNotFound) { MessageBox.Show(dirNotFound.Message); } }
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45