c#拷贝文件

if(!System.IO.Directory.Exists(@"C:\text"))
{
// 目录不存在,建立目录
System.IO.Directory.CreateDirectory(@"C:\text");
}
String sourcePath = "c:\源文件目录\原文件名称.txt";
String targetPath = "d:\目标文件目录\新的文件名称.aspx";
bool isrewrite=true; // true=覆盖已存在的同名文件,false则反之
System.IO.File.Copy(sourcePath, targetPath, isrewrite);

你可能感兴趣的:(c#拷贝文件)