将文件复制到目录

时间:2013-08-26 09:37:26

标签: c# .net file copy

是否没有将文件复制到目录的.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()吗?

2 个答案:

答案 0 :(得分:2)

  

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

完全:

string destination = Path.Combine(dir, Path.GetFileName(file));
Directory.CreateDirectory(dir);
File.Copy(file, destination);

答案 1 :(得分: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);      

}

}