up vote 0 down vote favorite
share [g+] share [fb]

I have code that calls the ReadXml method of the DataSet class and passes in a file name ReadXml(strFileName). Occasionally this throws a System.IO.IOException because the file is being used by another process.

If I change the code to use the ReadXml(stream) method and pass in a FileStream like this:

using(FileStream fs = new FileStream(this.filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite ))
{
     MyDS.ReadXxml(FileStream);
}

Will that prevent the IOException from occuring? What is going on under the hood when you simply pass in a file name?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

The DataSet class will create a FileStream object for you if you pass in the filename as a string. The overloaded method that takes a Stream as a parameter allows you to pass in a Stream object if you have one instead of a filename.

The version that takes a string as a parameter will simply create a FileStream and pass that onto the version that takes a Stream as a parameter.

You should use the overload that suits the data you have. In this case the string.

link|improve this answer
feedback

Most likely, they both open a FileStream and pass it to XmlReader.Create, then use the XmlReader to process the data.

link|improve this answer
If you dive deep enough into the framework code it calls: new FileStream(uri.LocalPath, FileMode.Open, FileAccess.Read, FileShare.Read, 1); – Mikael Svenson Jul 23 '10 at 20:13
@Mikael: is the FileStream ever passed to XmlReader.Create? – John Saunders Jul 23 '10 at 20:29
Actually it uses new XmlTextReader(string url) – Mikael Svenson Jul 24 '10 at 8:32
@Mikael: i looked that up last night and saw the same thing. Developers: "don't try this at home". new XmlTextReader()" has been deprecated since .NET 2.0 – John Saunders Jul 24 '10 at 17:41
feedback

"Occasionally this throws a System.IO.IOException because the file is being used by another process."

As you said, it's throwing an Exception because the file is being used by another process. Nothing you can do about that - stop the other process from using the file and it will work again.

If you believe this is false, then you should check that all your FileStreams are correctly closed, using the using construct as you are in the question.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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