0

如何获取独立存储文件的音乐属性?我知道,StorageFile.GetFileFromPathAsync但我也不知道如何从 IsolatedStorageFile 获取 StorageFile

4

1 回答 1

0

这有两个部分:

我也不知道如何从 IsolatedStorageFile 中获取 StorageFile

要从应用程序本地存储(WP7 隔离存储)中获取文件,您需要使用以下方式访问该文件夹:

StorageFolder localRoot = ApplicationData.Current.LocalFolder;
StorageFile file = await localRoot.getFileAsync("filename.txt");

如何获取 IsolatedStorageFile 的音乐属性?

Silverlight 不支持在隔离存储中获取文件的属性。 不幸的是,StorageFile 也不支持它。

于 2013-09-09T22:54:09.133 回答