C# 將資料夾中檔案複製到另一個資料夾
//新建一個資料夾 var imgPath = Directory.GetCurrentDirectory() + "\DevicePic1"; if (!Directory.Exists(imgPath)) { Directory.CreateDirectory(imgPath); } var a = picpath;//需要進行復制的圖片的路徑 var b= a.Substring(a.LastIndexOf(`.`));//擷取字尾名 var newname = imgPath + "\rename" + b;//目標資料夾中檔案的名稱,即將複製後對檔案進行重新命名 var nf = Path.Combine(newname);//將新的檔名稱路徑字串結合成路徑。 File.Copy(a,nf);//進行檔案複製,第一個引數是需要複製的檔案路徑,第二個引數是目標資料夾中檔案路徑 pictureBox2.Image=Image.FromFile(nf);