I am sending a file as an attachement :-

            // Create  the file attachment for this e-mail message.
            Attachment data = new Attachment(filePath, MediaTypeNames.Application.Octet);
            // Add time stamp information for the file.
            ContentDisposition disposition = data.ContentDisposition;
            disposition.CreationDate = System.IO.File.GetCreationTime(filePath);
            disposition.ModificationDate = System.IO.File.GetLastWriteTime(filePath);
            disposition.ReadDate = System.IO.File.GetLastAccessTime(filePath);
            // Add the file attachment to this e-mail message.
            message.Attachments.Add(data);

And then I want to move the file to another folder, however when I try to do this

                    try
                    {
                        //File.Open(oldFullPath, FileMode.Open, FileAccess.ReadWrite,FileShare.ReadWrite);
                        File.Move(oldFullPath, newFullPath);

                    }
                    catch (Exception ex)
                    {
                    }

Its throwing an exception that the file is already being used in another process. Can anyone help me out and tell me how I can unlock this file so that it can be moved to this location?

Thanks for your help and time

link|improve this question

54% accept rate
3  
Is message an MailMessage? If so, call .Dispose() on it. This should release the file lock. – alexn Mar 4 '11 at 8:42
feedback

4 Answers

You need to take advantage of "using" keyword:

using(Attachment att = new Attachment(...))
{
   ...
}

That's because "using" ensures IDisposable.Dispose method is called at the end of code block execution.

Whenever you use some class that's managing some resource, check if it's IDisposable and then use "using" block and you won't need to care about manually disposing calling IDisposable.Dispose.

link|improve this answer
feedback

In order to prevent this file lock from happening, you could use using as this will dispose of the object automatically:

using (Attachment data = new Attachment(filePath, MediaTypeNames.Application.Octet))
{
    // Add time stamp information for the file.             
    ContentDisposition disposition = data.ContentDisposition;   
    disposition.CreationDate = System.IO.File.GetCreationTime(filePath);
    disposition.ModificationDate = System.IO.File.GetLastWriteTime(filePath);
    disposition.ReadDate = System.IO.File.GetLastAccessTime(filePath);
    // Add the file attachment to this e-mail message.
    message.Attachments.Add(data); 
    // Add your send code in here too
}
link|improve this answer
feedback

Attachments are IDisposable and should be disposed of correctly after they have been sent to release the lock on the file

link|improve this answer
message.Dispose() did the trick :) Thanks for your help Greg – Johann Mar 7 '11 at 9:21
feedback

Disposing your message will fix this for you. Try calling Dispose on your message before moving the file, like so:

message.Dispose();
File.Move(...)

When disposing MailMessage, all locks and resources are released.

link|improve this answer
Hi alexn Yes that did the trick! Thanks. Sorry for late reply – Johann Mar 7 '11 at 9:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.