Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Windows 8 开发媒体播放器,我需要阅读 Windows Media Player 媒体库中的所有音乐。
我如何在 WinRT C# 中做到这一点?
谢谢
您需要选择允许您获取用户音乐库中所有音乐文件的Music Library合同。Appmanifest>Capabilities但是用户可以随时拒绝您的应用使用音乐库的权限。
Music Library
Appmanifest>Capabilities
var folder = Windows.Storage.KnownFolders.MusicLibrary; var files = await folder.GetFilesAsync();