摘要:Silverlight 2.0小技巧(9) 設定Isolated Storage
在 Silverlight 2.0小技巧(8) 讀寫Isolated Storage 知道如何讀取Isolated Storage 內檔案資訊
我們可以在Silverlight 按右鍵得到 Isolated Storage 的空間資訊資訊
目前預設Silverlight 擁有1MB 的空間.,也允許變更大小,變更大小方式如下:
using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication())
{
isf.AvailableFreeSpace; //允許空間單位Bytes
isf.Quota.ToString(); //目前使用空間
isf.IncreaseQuotaTo(Space); //設定允許空間
}
但是別忘了Silverlight 是用戶端程式...安全性還是需使用者確認,當設定IncreaseQuotaTo 時會跳出確認視窗
請使用者再次確認