Reputation: 65
Is there any way to access the any type of file (Image/text/Media) on SD card from Windows Phone 7 application. I have read from the multiple articles that WP7 applications can access only those files which are available under an application's IsolatedStorageFile (Which is local to an application). Does anyone knows a way to read the file directly from the SD card on the phone or the SD card file could be moved/write to an application's IsolatedStorageFile.
Upvotes: 1
Views: 1476
Reputation: 272
In Windows Phone 8, you can access files under the device SD Card using Microsoft.Phone.Storage API: http://msdn.microsoft.com/en-us/library/windows/apps/jj720573(v=vs.105).aspx
Upvotes: 0