I want to read a binary file using BinaryReader, but I keep getting an exception:

using (var stream = File.Open("file.bin", FileMode.Open, FileAccess.Read))
        {
            using (BinaryReader r = new BinaryReader(stream)) //EXCEPTION
            {

            }
        }

the "file.bin" has been set as a Content in the build action, but I keep getting this exception:

System.MethodAccessException was unhandled

Attempt to access the method failed: System.IO.File.Open(System.String, System.IO.FileMode, System.IO.FileAccess)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You don't use File.Open on Windows Phone 7 - you have to use isolated storage.

See the System.IO.IsolatedStorage namespace for more details.

For example:

using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
    using (var stream = store.OpenFile("file.bin", FileMode.Open))
    {
        using (var reader = new BinaryReader(stream))
        {

        }
    }
}
link|improve this answer
but I need to read a file from the content of my xap file. can i access these files using IsolatedStroage? – user836252 Nov 25 '11 at 8:07
@user836252: Ah, you should have said. No, those won't be in isolated storage. I believe you need Application.GetResourceStream. See this similar question. – Jon Skeet Nov 25 '11 at 8:14
I've said it has been set as a content in the build action lol but thanks, it works using GetResourceStrea – user836252 Nov 25 '11 at 8:34
feedback

Your Answer

 
or
required, but never shown

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