BUG: Error Message 550 <Filename>: The Process Cannot Access the File Because It Is Being Used by Another Process

ID: Q238644


The information in this article applies to:
  • Microsoft Internet Information Server version 4.0


SYMPTOMS

When trying to rename a file immediately after uploading it to a Microsoft FTP server, the following error message might appear:

550 <filename>: The process cannot access the file because it is being used by another process


RESOLUTION

The only known solution to this problem is to retry the operation until the internal lock is released and the operation succeeds. The following is an example of how to retry the operation programmatically using WinInet API calls:


while(!FtpRenameFile (hConnect,szFirstFile, szSecondFile))
{
     dError=GetLastError();
     if(dError==12003)
     {
          Sleep(25);
     }
     else
     {
          // A legitimate error has occurred, insert handler
          break;
     }
} 


STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a large file (approximately 20 MB).


  2. Open an FTP connection to a Microsoft Internet Information Server (IIS) FTP server using the FTP console application supplied with Windows.


  3. Copy the following text from a text editor, such as Microsoft Notepad, so that the commands will be called as close together as possible.
    
    put <filename>
    ren <filename> second 


  4. Paste the commands into the console window.


Additional query words: IIS, Internet Information Server, FTP, PUT, REN, 550, process, another process

Keywords : kbFTP kbIIS
Version : winnt:4.0
Platform : winnt
Issue type : kbbug


Last Reviewed: October 7, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.