我想在C#中将文件从A复制到B.我该怎么做?
答案 0 :(得分:14)
没有任何错误处理代码:
File.Copy(path, path2);
答案 1 :(得分:12)
File.Copy方法:
答案 2 :(得分:2)
使用FileInfo类。
FileInfo fi = new FileInfo("a.txt");
fi.CopyTo("b.txt");
答案 3 :(得分:1)
System.IO.File.Copy
答案 4 :(得分:1)
这应该有效!
using System.IO;
...
var path = //your current filePath
var outputPath = //the directory where you want your (.txt) file
File.Copy(path,outputPath);