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.
如何获取独立存储文件的音乐属性?我知道,StorageFile.GetFileFromPathAsync但我也不知道如何从 IsolatedStorageFile 获取 StorageFile
StorageFile.GetFileFromPathAsync
这有两个部分:
我也不知道如何从 IsolatedStorageFile 中获取 StorageFile
要从应用程序本地存储(WP7 隔离存储)中获取文件,您需要使用以下方式访问该文件夹:
StorageFolder localRoot = ApplicationData.Current.LocalFolder; StorageFile file = await localRoot.getFileAsync("filename.txt");
如何获取 IsolatedStorageFile 的音乐属性?
Silverlight 不支持在隔离存储中获取文件的属性。 不幸的是,StorageFile 也不支持它。