Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Isolated storage vs Application data folder [closed]

Tags:

.net

Can some tell me differences between using isolated storage and Application Data Folder.

Which folder is recommended to use to store application specific local store.

like image 993
Buzz Avatar asked Dec 23 '09 04:12

Buzz


People also ask

What is isolated storage in Appdata?

For desktop apps, isolated storage is a data storage mechanism that provides isolation and safety by defining standardized ways of associating code with saved data. Standardization provides other benefits as well.

What is isolated storage file?

Isolated storage is designed to prevent data corruption and access to application-specific data, while providing a standard data storage and retrieval system that's inaccessible to users, folders or applications. Isolated storage serves as a virtual file system managed by the . NET Common Language Runtime (CLR).


1 Answers

Isolated storage will give you a folder you can read from and write to without dealing with file and folder permissions. That's always nice. The thing is, though, accessing isolated storage isn't as easy as accessing a local folder.

That said, it depends on what you want to store. App_Data is for data files (database files, etc.). If that's what you need to store, then by all means, use it. If you need a space for temporary or slightly more permanent storage of a file, then look into isolated storage.

like image 76
Gabriel McAdams Avatar answered Oct 13 '22 23:10

Gabriel McAdams