使用File.Move重命名文件给IOException

时间:2009-12-08 16:36:04

标签: c# .net

我正在编写一个简单的应用程序,它将使用当前文件名之前的日期/时间重命名JPEG。这样我就可以将我拍摄的所有照片与我的伴侣照片(不同的相机制作和文件名)结合起来。

以下代码是发生故障的地方:

private void RenameFile(String oldFilename, String newFilename)
{
    if (File.Exists(oldFilename)
    {
        File.Move(oldFilename, newFilename);
    }
}

示例值:oldFilename =“E:\ 001.jpg”| newFilename =“E:\ 2009-08-07 06h05 - 001.jpg”

我得到的例外是:

System.IO.IOException was unhandled
  Message=The process cannot access the file because it is being used by another process.
  Source=mscorlib
  StackTrace:
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.__Error.WinIOError()
       at System.IO.File.Move(String sourceFileName, String destFileName)
       at RenamePhotos.Form1.btnRenamePhotos_Click(Object sender, EventArgs e) in C:\Users\Neil Deadman\Desktop\RenamePhotos\RenamePhotos\Form1.cs:line 107
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.Run(Form mainForm)
       at RenamePhotos.Program.Main() in C:\Users\Neil Deadman\Desktop\RenamePhotos\RenamePhotos\Program.cs:line 18
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()

如果我使用File.Copy而不是它可以工作,但我有两个文件,无法删除原文并使用File.Delete我得到相同(或类似)的异常。

在某些测试中,如果我将其重命名为E:\ a001.jpg那么它似乎有用吗?文件名有效,因为我可以使用Windows资源管理器重命名它。 :S

有什么想法吗?一些重命名工作的事实似乎说它不是一个锁定问题?

干杯尼尔

10 个答案:

答案 0 :(得分:9)

请参阅MSDN上的File.Move

具体为You cannot use the Move method to overwrite an existing file.

答案 1 :(得分:6)

感谢所有发帖的人。我设法使用以下方法

private void RenameFile(String oldFilename, String newFilename)
{
    FileInfo file = new FileInfo(oldFilename);

    if (file.Exists)
    {
        File.Move(oldFilename, newFilename);
    }
}

奇怪的是,我原来没有用,但上面做了。

真正的问题是我正在调试仍会导致抛出IOException的代码。如果我运行构建的应用程序,它工作正常!

再次感谢!我真的不敢相信,它会让我重命名为某些名字......一定是看到的东西!

尼尔

答案 2 :(得分:4)

有些重命名工作的事实似乎表明它不是外部锁定问题,但可能在您的程序中。如果你在File.Move(oldFilename, newFilename);上放置一个断点,你仍然可以从资源管理器重命名它吗?

答案 3 :(得分:3)

private  bool IsFileLocked(string filename)
{
    FileInfo file = new FileInfo(filename);
    FileStream stream = null;

    try
    {
        stream = file.Open(FileMode.Open, FileAccess.ReadWrite, FileShare.None);
    }
    catch (IOException)
    {
        return true;
    }
    finally
    {
        if (stream != null)
            stream.Close();
    }

    //file is not locked
    return false;
}
public void MoveFile(string from, string to)
{
    try
    {
        FileInfo file = new FileInfo(from);
        // check if the file exists

        if (file.Exists)
        {
            // check if the file is not locked
            if (IsFileLocked(from) == false)
            {
                // move the file
                File.Move(from, to);
            }
        }
    }
    catch (Exception e)
    {
        ;
    }
}

答案 4 :(得分:0)

还有另一个进程,或者您当前正在使用该文件的进程。这将阻止文件被删除,但不会阻止它被复制。很可能,您的程序打开了文件,但忘了关闭它。

答案 5 :(得分:0)

两种可能性:

  1. 源文件确实由另一个应用程序保持打开状态。根据我的经验,许多Windows应用程序使文件打开时间超过应有的时间。在这方面,Windows资源管理器可能是最糟糕的攻击者。我建议您查看Microsoft SysInternals中的Process ExplorerProcess Monitor实用程序。

  2. 目标文件已存在。您应该在方法中检查它并检查源文件。

答案 6 :(得分:0)

该异常表明该文件正在使用中 - 这可能是应用程序本身,即您是在其他地方创建/打开文件而不是关闭它?

另一个选择是该文件在另一个程序中打开以进行编辑,但尚未关闭。

您可以使用FileMon检查谁拥有该文件的锁定。

答案 7 :(得分:0)

文件可能仍在您系统上的某个进程中使用,很可能是您的程序。您可以将Process Explorer用于check which process is using the file,然后再从那里继续。

答案 8 :(得分:0)

当我误解File.Move文档(“将指定文件移动到新位置,提供指定新文件名的选项”)时,我收到此错误,表示如果您只指定目标目录而不是新的文件名,它会工作。当然不是;您不仅必须指定新目录,还要指定文​​件名,即使它与源相同也是如此。我不知道为什么这个错误变成了“被另一个进程使用”。

答案 9 :(得分:-2)

将文件重命名为相同名称会出现此错误。