vote up 2 vote down star
       using (var file_stream = File.Create("users.xml"))
        {
            var serializer = new XmlSerializer(typeof(PasswordManager));
            serializer.Serialize(file_stream, this);
            file_stream.Close();
        }

Using the above code works perfectly. However, when I shorten it to:

          var serializer = new XmlSerializer(typeof(PasswordManager));
          serializer.Serialize(File.Create("users.xml"), this);

I get the following exception when I try to deserialize the users.xml file in the same test: The process cannot access the file 'users.xml' because it is being used by another process.

The cause seems to be that the the File.Create method returns an opened FileStream, that I cannot close as I do not hold onto a reference of it.

My bad, or Microsoft's? ;-)

flag

There's an underlying concept here that you're missing (which is easy to do) - go read up on using objects that use the iDisposable interface. – overslacked May 17 at 20:28

4 Answers

vote up 8 vote down check

The problem is that in your second example you open a file handle that you never dispose of, so the second time you call your method it will throw the exception you are describing. The first snippet is the preferable way (You could remove the file_stream.Close() bit - it will be automatically called by Stream.Dispose()).

link|flag
Thanks, my bad it is then. – Dabblernl May 17 at 21:17
vote up 0 vote down

If you didn't have the "using" statement, but retained the close, you'd have been ok.

[Edit: Added try...finally, thanks cheeso]

var serializer = new XmlSerializer(typeof(PasswordManager));
FileStream fs;
try
{
    fs = File.Create("users.xml");
    serializer.Serialize(fs, this);
}
finally
{
    fs.Close(); // or fs.Dispose()
}

In that case, however, Dispose is preferable because it knows all the actions it must take to clean up, including close (and any thing else).

link|flag
don't forget the try...finally! – Cheeso Jun 29 at 19:06
wow that using syntax is convenient... thanks Cheeso – Nader Shirazie Jun 29 at 19:14
vote up 1 vote down

You should serialize in a try finally block so that you can make sure that the file is closed/disposed regardless of success or failure. This is what the using keyword does for you.

var serializer = new XmlSerializer(typeof(PasswordManager));
var fs = File.Create("users.xml");
try { serializer.Serialize(fs,this); }
finally { fs.Close(); }
link|flag
vote up 0 vote down

File.Create should be placed outside of the try block as shown in my earlier answer. If you put it inside the try block, you need to check fs for a null reference before closing. The following shows the corrected code but my first answer is much better since you can avoid this check.

serializer = new XmlSerializer(typeof(PasswordManager));
FileStream fs;
try
{
    fs = File.Create("users.xml");
    serializer.Serialize(fs, this);
}
finally
{
    if (fs != null)  // in case File.Create fails
        fs.Close(); // or fs.Dispose()
}
link|flag

Your Answer

Get an OpenID
or

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