Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#でファイルをAからBにコピーしたい。それ、どうやったら出来るの?
エラー処理コードなし:
File.Copy(path, path2);
File.Copy メソッド:
MSDN リンク
FileInfo クラスを使用します。
FileInfo fi = new FileInfo("a.txt"); fi.CopyTo("b.txt");
System.IO.File.Copy