Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Windows Phone 8 doesn't allow for free-for-all direct access to the user's hard-drive to read or write files. You'll have to use usecase specific APIs depending on the type of media you're trying to store. I've answered a similar question in the past regarding WP8's read-write access for known file types @ <a href="https://stackoverflow.com/questions/13467701/windows-phone-8-media-file-access/13473349#13473349">Windows Phone 8: Media file access</a> </p> <p>A few highlights: </p> <ol> <li><p>Your app can use IsoStore to read &amp; write files only accessable to your app. See <a href="http://www.windowsphonegeek.com/tips/All-about-WP7-Isolated-Storage---File-manipulations" rel="nofollow noreferrer">IsolatedStorageFile</a> API or ApplicationData.Current.<a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj681698%28v=vs.105%29.aspx" rel="nofollow noreferrer">LocalFolder</a> API for that. </p></li> <li><p>You can store pictures using <a href="http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.media.medialibrary.savepicture.aspx" rel="nofollow noreferrer">MediaLibrary.SavePicture</a> or MediaLibrary.SavePictureToCameraRoll methods.</p></li> <li><p>You can store songs using <a href="https://stackoverflow.com/questions/4385834/api-to-add-playlists-in-zune">MediaLibraty.SaveSong</a> method. </p></li> <li><p>Other then those APIs I'm not familiar with any other file write APIs to the OS from the top of my head. You can probably use a remote server, but that's pretty much it. </p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload