如何使用这个IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();在WP 8.1中

时间:2015-02-17 05:06:46

标签: c# windows-phone-8.1

IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();

我已将其修改为存储文件isoStore=StorageFile.________________();,但我在Windows Phone 8.1中找不到像GetUserStoreForApplication这样的方法。怎么做到这一点?

1 个答案:

答案 0 :(得分:1)

您可以使用ApplicationData.LocalFolder获取本地存储文件夹,也可以使用ApplicationData.RoamingFolder获取漫游文件夹。

Windows.Storage.StorageFolder localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
Windows.Storage.StorageFolder roamingFolder = Windows.Storage.ApplicationData.Current.RoamingFolder;

有关使用应用程序数据和设置的详细信息,请参阅Accessing app data with the Windows Runtime (Windows Runtime apps)