0

是否没有用于将文件复制到目录的 .NET 库调用?我发现的所有库调用(例如File.Copy()FileInfo.CopyTo())只支持将文件复制到另一个完全指定的文件

string file = "C:\Dir\ect\ory\file.txt";
string dir = "C:\Other\Directory";

File.Copy(file, dir); // does not work, requires filename

有图书馆电话吗?如果不是,那么编写自己的实用程序的最佳方法是什么,我真的必须使用Path.GetFileName()吗?

4

2 回答 2

2

我真的必须使用 Path.GetFileName() 吗?

确切地:

string destination = Path.Combine(dir, Path.GetFileName(file));
Directory.CreateDirectory(dir);
File.Copy(file, destination);
于 2013-08-26T09:40:58.623 回答
1

试试这个例子

public class SimpleFileCopy
{
 static void Main()
 {
    string fileName = "test.txt";
    string sourcePath = @"C:\Users\Public\TestFolder";
    string targetPath =  @"C:\Users\Public\TestFolder\SubDir";        
    string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
    string destFile = System.IO.Path.Combine(targetPath, fileName);      
    System.IO.File.Copy(sourceFile, destFile, true);      

}

}

于 2013-08-26T09:40:24.247 回答