Silverlight Isolated Storage 獨立儲存

l_serein發表於2012-11-20

Silverlight  獨立儲存 好比Cookie一樣,可以在客戶端儲存資訊,但是他更加強大,獨立儲存提供了客戶端指定目錄下的讀寫許可權,可以任意的向其中新增刪除修改讀取檔案。

獨立儲存將檔案儲存在系統盤-當前使用者-本地的-指定資料夾當中。

獨立儲存有兩個作用域 應用程式級別和站點級別 他就像是一個為Silverlight專門提供的資料夾,用來存放Silverlight的檔案資訊,比如XML、TXT、Dat、Html等,格式不限只要對你有用。

 

基礎操作語法

using System.IO.IsolatedStorage;
using System.IO;
       void CreateDir(string dirName)
       {
           IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication();
           storeFile.CreateDirectory(dirName);
       }

       void SaveFile(string savePath, string content)
       {
           IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication();
           IsolatedStorageFileStream sf = storeFile.CreateFile(savePath);
           using (StreamWriter sw = new StreamWriter(sf))
           {
               sw.WriteLine(content);
           }
           sf.Close();
       }

       void LoadFile(string readPath)
       {
           string content = string.Empty;
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               if (storeFile.FileExists(readPath))
               {
                   StreamReader sr =
                       new StreamReader(storeFile.OpenFile
                           (readPath, FileMode.Open, FileAccess.Read));
                   content = sr.ReadToEnd();
               }
           }
       }

       void DeleteFile(string path)
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               storeFile.DeleteFile(path);
           }
       }

       void DeleteDir(string dirPath)
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               storeFile.DeleteDirectory(dirPath);
           }
       }

       void LoadDirs()
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               var itemSource = storeFile.GetDirectoryNames("*");
           }
       }

名值對方式儲存讀取

這種方式就很像Cookie了
       string ReadSettings(string key)
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           return settings[key].ToString();
       }

       void SaveSettings(string key, string value)
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           settings.Add(key, value);
           settings.Save();
       }

       void ClearSettings()
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           settings.Clear();
       }

獨立儲存的檔案與名值對分別有兩個示例,可以在目錄地址連結下載程式碼閱讀。

獨立儲存的空間大小

獨立儲存預設的空間上限是1M,可以通過程式碼設定讓這個上限加大。程式碼如下

           //使1用?應|用?程ì序ò存?儲¢創′建¨對?象ó
            using (IsolatedStorageFile storeFile =
                IsolatedStorageFile.GetUserStoreForApplication())
            {
                //獲?取?舊é空?間?大ó小?
                long oldSize = storeFile.AvailableFreeSpace;
                //定¨義?新?增?空?間?大ó小?
                long newSize = 2097152;
                if (oldSize < newSize)
                {
                    //分?配?新?的?存?儲¢空?間?
                    storeFile.IncreaseQuotaTo(newSize);
                }
            }

 

客戶可以通過郵件Silverlight 控制元件選擇Silverlight配置中 ->應用程式儲存選項卡 中檢視本地有儲存了那些Silverlight應用儲存資訊。

image

相關文章