Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I write some data to SD card on Windows Phone 8

I checked Windows Phone 8 SDK document, and find that we can read the data from SD card, but we can't write something to it, is my understanding right?

like image 860
sunjinbo Avatar asked Dec 15 '22 17:12

sunjinbo


2 Answers

You can get read-only access to specified files on SD cards using the ExternalStorage API and ID_CAP_REMOVABLE_STORAGE capability, but you cannot write to this storage.
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj720573(v=vs.105).aspx

like image 180
Martin Suchan Avatar answered Jan 27 '23 04:01

Martin Suchan


Third party applications cannot write directly to anything outside the application's IsolatedStorage.

like image 22
Claus Jørgensen Avatar answered Jan 27 '23 04:01

Claus Jørgensen