I need to get a list of all files in a given IsolatedStorage folder. There are sub folders off the root of the IsolatedStorage and these need to be included in the list.
The usual System.IO classes can't be used with IsolatedStorage.
...
Since use of isolatedstorage storing for silverlight can provide a method for storing userdata locally and whikle not connected to the internet, I'm interested in hearing your thoughts about intelligently synchronizing dbdata and silverlight isolatedstoragedata.
I've currently implemented a solution, but it seems a bit complex to me, so...
I am using Isolated Storage to store the image files but when i went to open the image file through windows then the system showed me that the file is corrupted.
Any idea .
...
My issue is that I'm saving a list of entities to the isolatedstorage so that the user can change them locally. If the user is online and modifies the changes have to be saved both locally and externally to the db. This is an issue, because I get an error saying that the entity "cannot be attached to this EntityContainer because it is al...
Hi,
I have a snippet of code that should remove a text file and its' parent directory:
if (isolatedStore.FileExists(logPath + "\\" + logFileName))
isolatedStore.DeleteFile(logPath + "\\" + logFileName;
if (isolatedStore.DirectoryExists(logPath))
isolatedStore.DeleteDirectory(logPath);
...where logPath + "\" + logFileName mig...
Hi,
My problem is The following:
I have a windows application that stores a file on the current user's isolated storage, lets call this user Adam.
On the same machine I have a Web service (The Web Service's application pool is running with Adam's credentials) that uses the same dll to access the file on the isolated storage but it is ...
The full .NET platform has a great feature for storing user options in Settings files, which conveniently support saving and loading. Has anyone created an analog to this for Silverlight? I'd like the settings to be stored client side.
...
The scenario I am facing is that I have an ASP.NET web service (.NET 3.5) running on an W2k3 server which is using the CacheManager/IsolatedStorage store to store a persisted state variable. This configuration has been working fine for quite sometime until we changed the physical machine. Now whenver the code that accesses that value r...
I've got an assembly in my framework, the purpose of which is to manage some data common to several applications that I am building. The assembly uses isolated storage to persist the data. The assembly itself happens to be a command-line .exe application and it can be executed directly as a tool to examine and make changes to the data....
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 IsolatedStorage."}
There are no further details about the reason for the exception. Here is the stack trace:
at System.IO.IsolatedStorage...
I'm using IsolatedStorage for persisting objects, but from time to time I need to manually clean out files from this directory.
As I persist the files, I want to write the physical location of the directory to the console. There doesn't appear to be an accessible property that returns this information though.
How should I do it?
Here i...
Can I Store a Access Database in Isolated Storage?
If I can what is the Connection String?
...
I want to take a file that stored already in the isolated storage, and copy it out, somewhere on the disk.
IsolatedStorageFile.CopyFile("storedFile.txt","c:\temp")
That doesn't work. Throws IsolatedStorageException and says "Operation not permitted"
...
Hello guys.
For save my configuration_data I use isolated stoeage domain scope like:
IsolatedStorageFile isoFile =
IsolatedStorageFile.GetUserStoreForDomain();
But sometimes at saving data I get:
System.Reflection.TargetInvocationException: Exception has been thrown by the
target of an invocation. ---> System.IO.PathTooL...
I'm working on an Windows Phone 7 app where I'm going to show ATM's nere your location with bing maps.
I have an xml-file with addresses and gps coordinates. But how do I add this file to my program from visual studio? If I set BuildAction to Content and Copy to output directory to Copy always. The file still isn't in IsolatedStorage. D...
Hey all,
I am looking at writing a silverlight app that I plan to use OOB setting to enable use on both PC and mac.
I have been doing a little investagation on the isolationstoragefile and what I understand is it will work for both pc and mac without a problem.....Is that correct?
The application I am building is going to be a busines...
I'm working on a Windows Phone 7 app, and I was wondering whether anyone had a definitive answer on whether or not I have to check if a directory exists before creating one, and what the advantages/disadvantages of doing/not doing so are. As far as I can tell, from stepping through my code, the following two blocks of code work in the sa...
I know that storage is available via Isolated Storage, but I'm not sure I've seen anywhere how much actual storage I have access to for my app. Anyone know?
...
How do I obtain the fully qualified path of an isolated storage file for a WPF application?
...
The question is clear: I am trying to Convert an "System.IO.IsolatedStorage.IsolatedStorageFileStream" to an ImageSource but have no clue of how I could do this. I've seen severals articles that talk about converting arrays of bytes to Imagesource, but nothing about ISFileStreams. If someone has a solution or an example on how to proceed...