我正在尝试将所有格式文件(.txt、.pdf、.doc ...)文件从源文件夹复制到目标。
我只为文本文件编写代码。
我应该怎么做才能复制所有格式文件?
我的代码:
string fileName = "test.txt";
string sourcePath = @"E:\test222";
string targetPath = @"E:\TestFolder";
string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
string destFile = System.IO.Path.Combine(targetPath, fileName);
复制文件的代码:
System.IO.File.Copy(sourceFile, destFile, true);