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