10

我想在 C# 中将文件从 A 复制到 B。我怎么做?

4

5 回答 5

16

没有任何错误处理代码:

File.Copy(path, path2);
于 2008-08-21T13:45:56.773 回答
11

File.Copy 方法:

MSDN 链接

于 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 回答