如何获得IsolatedStorageFile的音乐属性?我知道StorageFile.GetFileFromPathAsync,但我也想不出如何从IsolatedStorageFile那里得到StorageFile
发布于 2013-09-09 22:54:09
这包括两部分:
我也想不出如何从StorageFile那里得到IsolatedStorageFile
要从应用程序本地存储(WP7隔离存储)获取文件,您需要使用以下方法访问该文件夹:
StorageFolder localRoot = ApplicationData.Current.LocalFolder;
StorageFile file = await localRoot.getFileAsync("filename.txt");如何获得IsolatedStorageFile的音乐属性?
Silverlight不支持在隔离存储中获取文件的属性。 不幸的是,StorageFile也不支持它。
https://stackoverflow.com/questions/18266788
复制相似问题