Hello! Is it possible to manipulate files (rename, move, delete) from the Windows Phone 8 multimedia library? How to access I know: var library = new MediaLibrary(); and how to manage I do not know.
|
2 answers
Sorry, the first answer is wrong, Windows.Storage space is limited in its use on Windows Phone 8, tried to access user libraries through: KnowFolders.MusicLibrary , but says it is not supported on Windows Phone. Returned to the Microsoft.Xna.Framework.Media namespace, there is a class MediaLibraryExtensions with file methods
|
Method var library = new MediaLibrary(); outdated and used in Windows Phone 7.X. In Windows Phone 8, you can use the Windows.Storage namespace to fully work with user libraries.
|