我想在 C# 中将文件从 A 复制到 B。我怎么做?
Daren Thomas
问问题
16910 次
5 回答
16
没有任何错误处理代码:
File.Copy(path, path2);
于 2008-08-21T13:45:56.773 回答
11
File.Copy 方法:
于 2008-08-21T13:45:51.470 回答
2
使用 FileInfo 类。
FileInfo fi = new FileInfo("a.txt");
fi.CopyTo("b.txt");
于 2008-08-21T13:45:44.760 回答
1
系统.IO.文件.复制
于 2008-08-21T13:45:42.217 回答
1
这应该工作!
using System.IO;
...
var path = //your current filePath
var outputPath = //the directory where you want your (.txt) file
File.Copy(path,outputPath);
于 2018-09-26T14:11:51.420 回答