根据标题,如何确定Windows Phone应用程序中使用的IsolatedStorage空间?
答案 0 :(得分:0)
您可以知道可用空间和已用空间。
try
{
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
Int64 curAvail = store.AvailableFreeSpace;
var used = store.Quota - curAvail;
}
}
catch (IsolatedStorageException)
{
// TODO: Handle that store could not be accessed.
}