有没有办法找出你的应用程序在WP7上使用的隔离存储空间有多大?

时间:2011-04-21 19:51:37

标签: c# windows-phone-7 isolatedstorage

我想知道我的应用在Windows Phone 7上使用多少千字节/兆字节的隔离存储空间。有一种简单的方法可以找到它吗?

1 个答案:

答案 0 :(得分:5)

IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();
long usedBytes = isf.Quota - isf.AvailableFreeSpace;

此处的文档:http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile(v=VS.96).aspx