直接使用 FileInfo.CopyTo 方法
代码如下:
public void saveFile(string filePathName , string toFilesPath) { FileInfo file = new FileInfo(filePathName); string newFileName= file.Name; file.CopyTo(toFilesPath + @"\" + newFileName, true); }
参数说明:
filePathName:将要被复制的文件的完整路径
toFilesPath:复制到所指定的文件夹的完整路径
调用示例:
string filePath = @"C:\test1\hello.jpg"; string toFilesPath = @"D:\test2"; saveFile(filePath , toFilesPath )
方法重载:复制后改变文件名称
public void saveFile(string filePathName , string toFilesPath , string newFileName) { FileInfo file = new FileInfo(filePathName); file.CopyTo(toFilesPath + @"\" + newFileName, true); }