在 C# 中将文件从一个位置移动到另一个位置

本文关键字:位置 一个 移动 另一个 文件 | 更新日期: 2023-09-27 17:56:41

我使用以下代码在循环中将文件从一个位置移动到另一个位置,而我每次在循环中创建一个新文件,但抛出以下异常:

System.IO.IOException: Cannot create a file when that file already exists.
   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   at System.IO.FileInfo.MoveTo(String destFileName). 

这是我的代码:

string strFile = strFileName;
try
{
    string strFinalPath = ApplicationConfiguration.FinalInvoiceFolder;
    if (!Directory.Exists(strFinalPath))
    {    
        Directory.CreateDirectory(strFinalPath);
    }
    if (File.Exists(strPrintedFilePath))
    {    
        objFile.MoveTo(strFinalPath + strFile);    
    }   
}
catch (Exception ex2)
{
    WriteLogCustom(ex2.ToString() + ex2.InnerException.ToString(), true);
}

在 C# 中将文件从一个位置移动到另一个位置

你的代码应该看起来像这样

if (File.Exists(strPrintedFilePath))
{    
    string destinationPath = Path.Combine(strFinalPath, strFile);
    if(File.Exists(destinationPath)
    {   
        // your logic to handle situations
        // when a destination file already exists
    }
    else  
    {            
        objFile.MoveTo(destinationPath);    
    }
} 

试试这个

string path1 = @"C:'Users'username'Desktop'Erro1.png";
string path2 = @"C:'test'Erro1.png";
if (File.Exists(path2))
    File.Delete(path2);
// Move the file.
File.Move(path1, path2);

确保您的目标路径具有完全权限权限,否则它会为您提供拒绝访问错误。

相关文章: