我直接从How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)获得了这段代码:
string sourceDir = currDir + "\\" + "Trends";
string targetDir = currDir + "\\" + reportDir + "\\" + "Trends";
if (Directory.Exists(sourceDir))
{
string[] files = Directory.GetFiles(sourceDir);
foreach (string file in files)
{
string fileName = Path.GetFileName(file);
string targetFile = Path.Combine(targetDir, fileName);
File.Copy(file, targetFile, true);
}
}
但是,当我运行此代码时,我会在 sourceDir 中的每个文件上抛出一个错误,因为它已经在使用中,所以无法访问它。当我退出代码时,很明显没有其他进程正在使用这些文件,所以一定是这段代码导致了问题。有没有办法为此使用“使用”?
任何建议表示赞赏。
问候。