3

根据标题,如何确定 Windows Phone 应用程序中已使用的独立存储空间?

4

1 回答 1

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.

}
于 2012-08-13T08:18:10.847 回答