WP7 Access to files and folders of the phone

How to access files and folders from the phone’s memory, and not to the application’s memory (i.e., isolated storage)?

+6
source share
3 answers

It's impossible. Each application has its own directory and permissions to work inside it. No access to files outside this directory.

You can use launchers and selectors to get some data from other places (for example, a list of contacts or photos), but you cannot directly access these files.

+3
source

I saw the ability to load the SQL database from the application installation directory (non-isolated storage). See http://blog.arsanth.com/index.php/2011/06/02/working-with-pre-populated-sql-ce-databases-in-wp7/ for more details. This can be done using a connection string, for example. datasource='appdata:/db.sdf'; mode='read only' datasource='appdata:/db.sdf'; mode='read only' . You might be able to do something similar to reading files from the application installation directory.

0
source

there is something called IsolStorageExplorer → http://wp7explorer.codeplex.com/

0
source

Source: https://habr.com/ru/post/912738/


All Articles