要求:需要将一个文件(如EM1.mdb)复制一份并移动到另外一个目录里,并且复制的那一份名字变为(EM2.mdb)
主要运用到CopyTo
CopyTo(String)
将现有文件复制到新文件,不允许覆盖现有文件
重载
CopyTo(String) | 将现有文件复制到新文件,不允许覆盖现有文件。 |
CopyTo(String, Boolean) | 将现有文件复制到新文件,允许覆盖现有文件。 |
public System.IO.FileInfo CopyTo (string destFileName);
参数
destFileName
要复制到的新文件的名称。
接下来是我的demo:
string path = @"d:\EM1.txt";
string path2 = @"d:\云轩\EM2.txt";
FileInfo fi1 = new FileInfo(path);
FileInfo fi2 = new FileInfo(path2);
try
{
// Create the source file.
// using (FileStream fs = fi1.Create()) { }
//Ensure that the target file does not exist.
if (File.Exists(path2))
{
fi2.Delete();
}
//Copy the file.f
fi1.CopyTo(path2);
Console.WriteLine("{0} was copied to {1}.", path, path2);
}
catch (IOException ioex)
{
Console.WriteLine(ioex.Message);
}
首先你要有一份EM1.txt,接下来用我上面的demo,运行,就会在 云轩 这个文件夹下,自动生成EM2.mdb,很快
当然具体的方法得去msdn里面找,里面有详细的demo(借鉴了)