isolatedstorage Questions

9

Solved

Where would the physical files be?
Youlandayoulton asked 9/11, 2008 at 2:54

1

The MSDN states: None No isolated storage usage. User Isolated storage scoped by user identity. Domain Isolated storage scoped to the application domain identity. Assembly Isolated storage sco...
Bearish asked 21/10, 2014 at 11:51

4

Solved

I have a problem with isolated storage. This is my code: List<Notes> data = new List<Notes>(); using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication(...

4

Solved

The Winform application is release with ClickOnce in our Intranet. We store personal preference for the GUI in the Isolated Storage. All works pretty fine :) The problem is when we have a new vers...
Lunula asked 14/10, 2008 at 17:8

2

I created a Word add-in project with a ribbon, and when I want to save the document, after several modifications with OpenXml, an exception is raised. Dim MainXMLDoc As New XmlDocument() Using Wor...
Orchitis asked 2/6, 2014 at 14:13

2

Solved

How do I obtain the fully qualified path of an isolated storage file for a WPF application?
Demonolatry asked 23/9, 2010 at 18:35

3

Solved

I would like to know if there is a "first run" flag or similar in WP7. My app takes some stuff out of isolated storage so I would like to determine if this is necessary first time. I am currently u...
Selfrevealing asked 5/1, 2011 at 21:30

1

I have completely rewritten one of my Windows phone 8 app. I use IsolatedStorageSettings to store user specified settings in both "old" and "new" versions of my app. In my new app version I just co...
Fourpence asked 18/8, 2014 at 19:8

3

Solved

I need to rename a file in the IsolatedStorage. How can I do that?
Cloverleaf asked 9/4, 2009 at 22:15

2

Solved

I am using EPPlus 2.8.0.2 library in my ASP.NET MVC 3 app to generate excel files. This application runs on IIS 6 on Windows Server 2003 R2. The offending line is this: xlsdoc.GetAsByteArray xl...
Luciana asked 10/10, 2011 at 10:15

3

I am using this code for storing the image into isolate storage at the time of camera action completed. void camera_Completed(object sender, PhotoResult e) { BitmapImage objImage = new BitmapImag...
Chapland asked 4/6, 2013 at 9:39

4

I am trying to create an instance of StorageFile in my class library... var localFolder = ApplicationData.Current.LocalFolder; StorageFile destinationFile = await localFolder.CreateFileAsync(desti...
Legislature asked 3/5, 2012 at 9:18

2

Solved

I have the following strange behaviour in my Windows phone 8, C# App. I am saving a Setting with: private void SaveProperty<T>(T property, string propertyName) { if (IsolatedStorageSettin...
Moyer asked 13/6, 2013 at 11:6

2

I am trying to create a file in the Isolated storage using following code, IsolatedStorageFile storageFile = IsolatedStorageFile.GetUserStoreForApplication(); storageFile.CreateFile("Html\\index.h...

4

I'm building a Windows Phone 7 application that uses isolated storage. The code works most of the time but I keep getting IsolatedStorageExceptions randomly: {"An error occurred while accessing Is...
Gradeigh asked 17/7, 2010 at 11:51

1

Solved

I'm working on a behind-the-scenes library for Windows Phone 8. We need to use the filesystem as a crude cache. I've found that there are two APIs for Windows Phone 8 though. There is the typical I...

2

Solved

How to view contents of Isolated storage on windows phone 8 app on like the IsoStoreSpy for windows phone 7.5?
Bodiless asked 22/11, 2012 at 5:40

4

I am developing a WinForms application using C# 3.5. I have a requirement to save a file on a temporary basis. Let's just say, for arguments sake, that's it's for a short duration of time while the...
Weise asked 16/1, 2013 at 19:53

3

Solved

I want to write a file where an external application can read it, but I want also some of the IsolatedStorage advantages, basically insurance against unexpected exceptions. Can I have it?
Toxoplasmosis asked 11/7, 2009 at 1:31

3

Solved

Both statements window['localStorage'] and window.localStorage are undefined when accessing the url "file:///C:/index.html" Is localStorage off limits when running websites on the filesystem? PS...
Branny asked 2/1, 2012 at 22:33

2

Solved

I have 2 pages.(MainPage.xaml,second.xaml) MainPage.xaml is the Login page. In this page I send login and password, and receive result. I save them(result) in Isolate Storage and navigate to the se...
Tribunate asked 20/8, 2012 at 10:4

0

I'm using System.IO.Packaging to create files in a completely managed desktop (Windows Forms) application. Under certain conditions, the writing of the OPC package raises the "Unable to determine ...
Beverleebeverley asked 23/6, 2012 at 14:27

4

Solved

I'm building a windows phone 7 application using silverlight 4. I store my data in Isolated storage as outlined here. The program runs with no errors. My question is where I can see the file I have...
Sensational asked 14/5, 2010 at 12:1

1

According to MSDN communication between foreground app and background agents through files in isolated storage should be protected by a Mutex. The only article I can find that describes how to do ...

2

This is an issue that only happens for some users. Whenever I release a new version of my app in Marketplace I get emails from users saying that all the settings in the app are lost. I can't repr...
Sensitive asked 12/4, 2012 at 9:37

© 2022 - 2024 — McMap. All rights reserved.