Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6662861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:26:09+00:00 2026-05-26T02:26:09+00:00

In my unit tests, I am using the following code to open a stream

  • 0

In my unit tests, I am using the following code to open a stream and write to it:

IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication();
stream = m_store.OpenFile(filename, FileMode.Create);
...
stream.Flush();
stream.Close();
stream.Dispose();
store.Dispose()

The first time it succeeds, but the second time it fails with the following log output:
Additional information: Operation not permitted on IsolatedStorageFileStream.

The FileMode.Create enum constant is defined as:

Specifies that the operating system should create a new file. If the file already exists, it will be overwritten. Create is equivalent to requesting that if the file does not exist, use CreateNew; otherwise, use Truncate.

so it appears this is the correct constant.

I have found a few similar questions on stackoverflow such as
IsolatedStorageFileStream exception is throw when file is opened?

but they didn’t help. As suggested somewhere on the net (can’t find the link now), I tried deleting the file first if it existed, contrary to the enum comments, like below, but didn’t help either:

if (store.FileExists(filename))
{
   store.DeleteFile(filename);
}

QUESTION: What I am missing?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:26:10+00:00Added an answer on May 26, 2026 at 2:26 am

    Firstly, you should really use a using statement instead of explicitly calling Close or Dispose – otherwise if there’s an exception, you won’t have closed the stream.

    Secondly, I suspect the problem is that you haven’t disposed of the store itself. Try this:

    using (var store = IsolatedStorageFile.GetUserStoreForApplication())
    using (var stream = store.OpenFile(filename, FileMode.Create))
    {
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been writing unit tests using NUnit and Moq with my Silverlight code
I have a very large code base that contains extensive unit tests (using CppUnit).
I'm using Xcode 4 and GHUnit to write some unit tests for the first
I am trying to write some unit tests for my code. In out project
I can typically test a regular Test::Unit method using the following commandline syntax for
In the past I wrote most of my unit tests using C# even when
I had set up a bunch of NUnit unit tests using the Test connection
I was curious if anyone had any problems creating unit tests around using the
What is the best way to run silverlight unit tests automatically using team city?
We are currently using unit tests to test our project. We have the majority

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.