如何检测Windows Phone中的IsolatedStorage已用空间

时间:2012-08-13 08:10:45

标签: windows-phone isolatedstorage

根据标题,如何确定Windows Phone应用程序中使用的IsolatedStorage空间?

1 个答案:

答案 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.

}