Silverlight-管理独立存储(Isolated Storage)
Silverlight中的独立存储是其内部的可信任的可访问文件空间,在这里你可以使用Silverlight 随意的创建、读取、写入、删除目录和文件,它有一些类似于Cookie,但是它可以在客户端保存大量的数据。这个空间默认是1M,如果不够的时候可以申请 扩大容量。
网站+用户+应用程序定位一个独立存储,也就是说必须得相同网站,相同用户,相同应用程序才能够访问这个独立的存储空间。独立存 储是IsolatedStorageFile密封类来进行设置的,这个类分布在命名空间System.IO.IsolatedStorag。我们引用 System.IO命名空间对文件进行操作。下面我们来看一个演示的Xaml代码如下:
| <Grid x:Name="LayoutRoot" Background="White"> |
| <Button Content="设置独立存储" Height="23" HorizontalAlignment="Left" Margin="29,79,0,0" |
| Name="btnSetStorage" VerticalAlignment="Top" Width="75" Click="btnSetStorage_Click" /> |
| <Button Content="清空独立存储" Height="23" HorizontalAlignment="Left" Margin="268,79,0,0" |
| Name="btnClearStorage" VerticalAlignment="Top" Width="75" Click="btnClearStorage_Click" /> |
| <Button Content="获取独立存储列表" Height="23" HorizontalAlignment="Left" Margin="142,79,0,0" |
| Name="btnGetStorage" VerticalAlignment="Top" Width="107" Click="btnGetStorage_Click" /> |
| <ListBox Height="165" HorizontalAlignment="Left" Margin="12,123,0,0" Name="listBox1" |
| VerticalAlignment="Top" Width="166" /> |
| <ListBox Height="165" HorizontalAlignment="Left" Margin="198,123,0,0" Name="listBox2" |
| VerticalAlignment="Top" Width="166" /> |
| <Button Content="读取" Height="23" HorizontalAlignment="Left" Margin="365,79,0,0" |
| Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" /> |
| <sdk:Label Height="28" HorizontalAlignment="Left" Margin="370,123,0,0" Name="label1" |
| VerticalAlignment="Top" Width="189" /> |
| <sdk:Label Height="28" HorizontalAlignment="Left" Margin="370,181,0,0" Name="label2" |
| VerticalAlignment="Top" Width="189" /> |
| </Grid> |
然后我们来看Xaml.cs代码中使用IsolatedStorageFile对独立存储进行添加目录,添加文件,读取文件,删除文件及目录,扩展独立存储空间等操作。
| public partial class MainPage : UserControl |
| { |
| public MainPage() |
| { |
| InitializeComponent(); |
| } |
| private void btnSetStorage_Click(object sender, RoutedEventArgs e) |
| { |
| using (var storage = IsolatedStorageFile.GetUserStoreForApplication()) |
| { |
| //创建First父目录 |
| if(!storage.DirectoryExists("FatherFirstDir")) |
| { |
| storage.CreateDirectory("FatherFirstDir"); |
| //创建子目录 |
| string SonDir = Path.Combine("FatherFirstDir", "SonFirstDir"); |
| storage.CreateDirectory(SonDir); |
| //创建文件 |
| IsolatedStorageFileStream fileStream = storage.CreateFile(Path.Combine(SonDir, "First.txt")); |
| using (StreamWriter swriter = new StreamWriter(fileStream)) |
| { |
| swriter.Write("这是第一个程序txt"); |
| } |
| fileStream.Close(); |
| } |
| //创建Secend父目录 |
| if (!storage.DirectoryExists("FatherSecendDir")) |
| { |
| storage.CreateDirectory("FatherSecendDir"); |
| //在一级目录下添加一个文件 |
| IsolatedStorageFileStream fileStream = storage.CreateFile(Path.Combine("FatherSecendDir", "second.txt")); |
| using (StreamWriter swriter = new StreamWriter(fileStream)) |
| { |
| swriter.Write("新的txt程序"); |
| } |
| fileStream.Close(); |
| } |
| //当前的独立存储状态 |
| this.label1.Content = "最大空间量:" + storage.Quota + " 已使用量:" + storage.UsedSize; |
| //获取文件First.txt的值 |
| using (StreamReader reader = new StreamReader(storage.OpenFile("FatherFirstDir\\SonFirstDir\\First.txt", |
| FileMode.Open, FileAccess.Read))) |
| { |
| this.label2.Content = reader.ReadToEnd(); |
| } |
| } |
| } |
| private void btnGetStorage_Click(object sender, RoutedEventArgs e) |
| { |
| //获取文件夹中的文件以及所有的文件夹名称 |
| using (var storage = IsolatedStorageFile.GetUserStoreForApplication()) |
| { |
| if (storage.DirectoryExists("FatherSecendDir")) |
| { |
| String[] fileList = storage.GetFileNames("FatherSecendDir/"); |
| this.listBox1.ItemsSource = fileList; |
| String[] dirList = storage.GetDirectoryNames("*"); |
| this.listBox2.ItemsSource = dirList; |
| } |
| } |
| } |
| private void btnClearStorage_Click(object sender, RoutedEventArgs e) |
| { |
| //删除所有的文件以及文件夹 |
| using (var storage = IsolatedStorageFile.GetUserStoreForApplication()) |
| { |
| //在这里简单做一个判断,实际应用过程中不可 |
| if (storage.FileExists("FatherFirstDir\\SonFirstDir\\First.txt")) |
| { |
| storage.DeleteFile("FatherFirstDir\\SonFirstDir\\First.txt"); |
| storage.DeleteDirectory("FatherFirstDir\\SonFirstDir"); |
| storage.DeleteDirectory("FatherFirstDir"); |
| storage.DeleteFile("FatherSecendDir\\second.txt"); |
| storage.DeleteDirectory("FatherSecendDir"); |
| } |
| } |
| } |
| private void button1_Click(object sender, RoutedEventArgs e) |
| { |
| int addSpaceSize = 2097152; |
| //增加最大独立存储空间量 |
| using (var storage = IsolatedStorageFile.GetUserStoreForApplication()) |
| { |
| if (storage.AvailableFreeSpace < addSpaceSize) |
| { |
| storage.IncreaseQuotaTo(storage.Quota+ addSpaceSize); |
| } |
| this.label1.Content = "最大空间量:" + storage.Quota + " 已使用量:" + storage.UsedSize; |
| } |
| } |
| } |
现 在我们来看看如何去看独立存储中的文件夹以及文件,在下图位置设置断点,然后调试,先点击"设置独立存储",然后点击"获取独立存储",然后安装下面去找 到m_AppFilesPath字段的值,复制这个值到Windows文件夹的地址栏,按下确定键即可进入独立存储空间的目录下。在这里你可以看到以下的 独立存储文件夹。



Silverlight-管理独立存储(Isolated Storage)的更多相关文章
- C Primer Plus--C存储类、链接和内存管理之存储类(storage class)
目录 存储类 作用域 链接 存储时期 自动变量 寄存器变量 具有代码块作用域的静态变量 具有外部链接的静态变量 extern关键字 具有内部链接的静态变量 多文件 存储类 C为变量提供了5种不同的存储 ...
- 与众不同 windows phone (6) - Isolated Storage(独立存储)
原文:与众不同 windows phone (6) - Isolated Storage(独立存储) [索引页][源码下载] 与众不同 windows phone (6) - Isolated Sto ...
- Silverlight 独立存储(IsolatedStorageFile)
1.在Web中添加天气服务引用地址 http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl 2.在Web中添加Wcf服务接口I ...
- Atitit usrqbg1821 Tls 线程本地存储(ThreadLocal Storage 规范标准化草案解决方案ThreadStatic
Atitit usrqbg1821 Tls 线程本地存储(ThreadLocal Storage 规范标准化草案解决方案ThreadStatic 1.1. ThreadLocal 设计模式1 1.2. ...
- Windows Server 2016软件定义存储:Storage Spaces Direct的关键特性
[TechTarget中国原创] 微软在Windows Server 2016 Technical Preview 2中引入了Storage Spaces Direct.这个特性将本地存储扩展为高可用 ...
- 利用KeyVault来加强存储Azure Storage访问密钥管理
很多时候管理Azure的存储账号我们都需要通过下面的界面管理访问密钥,大部分情况下通过密钥的轮替使用更新就可以做到安全管理了. 但是很多时候存储账号的Key就会不小心分发到开人员.测试人员.和管理员手 ...
- win10的独立存储
win10的独立存储和win8的大致相同 Windows.Storage.ApplicationDataContainer roamingSettings = Windows.Storage.Appl ...
- 开放系统的直连式存储(Direct-Attached Storage,简称DAS)
开放系统的直连式存储(Direct-Attached Storage,简称DAS)已经有近四十年的使用历史,随着用户数据的不断增长,尤其是数百GB以上时,其在备份.恢复.扩展.灾备等方面的问题变得日益 ...
- HTML5本地存储(Local Storage) 的前世今生
长久以来本地存储能力一直是桌面应用区别于Web应用的一个主要优势.对于桌面应用(或者原生应用),操作系统一般都提供了一个抽象层用来帮助应用程序保存其本地数据 例如(用户配置信息或者运行时状态等). 常 ...
随机推荐
- 1.2(Spring MVC学习笔记) Spring MVC核心类及注解
一.DispatcherServlet DispatcherServlet在程序中充当着前端控制器的作用,使用时只需在web.xml下配置即可. 配置格式如下: <?xml version=&q ...
- 爬取维基百科人物介绍,并使用pymysql存储到数据库
代码如下: from urllib.request import urlopen from bs4 import BeautifulSoup import re import datetime imp ...
- ubuntu使用ssh远程登录服务器及上传本地文件到服务器
1. ubuntu 远程登录 首先你的ubuntu要能够支持ssh,如果不能,自行百度! 打开终端,输入 ssh root@115.159.200.13(你的服务器的IP地址) 回车就会让你输入 ...
- PhantomJS 基础及示例
腾讯云技术社区-掘金主页持续为大家呈现云计算技术文章,欢迎大家关注! 作者:link 概述 PhantomJS is a headless WebKit scriptable with a JavaS ...
- mq使用经验
1.Producer使用指南--发送消息注意事项 1.正常情况下一个业务系统尽可能用一个Topic,消息子类型用tags来标识,tags可以由业务系统自由设置.只有发送消息设置了tags,消费方在订阅 ...
- linux下目录大小为什么是4K?一个目录下最多有个多少个子目录?最多有多少个文件?ls -l显示的内容中total到底是什么?
子目录数太多,会影响搜索性能. 在同一个路径下,一级子目录的个数限制为31998,如果你的应用生成的目录可能会超过这个数,那要注意进行目录分级.例如,如果目录名为数字的话,可以将数字除以10000后的 ...
- SQLSERVER表联结(INNER JOIN,LEFT JOIN,RIGHT JOIN,FULL JOIN,CROSS JOIN,CROSS APPLY,OUTER APPLY)
1 常用表联结(inner join,left join,right join,full join,cross join) if object_id(N'table1',N'U') is not nu ...
- [Python爬虫] 之二十六:Selenium +phantomjs 利用 pyquery抓取智能电视网站图片信息
一.介绍 本例子用Selenium +phantomjs爬取智能电视网站(http://www.tvhome.com/news/)的资讯信息,输入给定关键字抓取图片信息. 给定关键字:数字:融合:电视 ...
- Python——Baseequestandler class (Interesting found in python‘s document)
class BaseHTTPRequestHandler(socketserver.StreamRequestHandler) HTTP request handler base class. | ...
- python——TypeError: 'str' does not support the buffer interface
import socket import sys port=51423 host="localhost" data=b"x"*10485760 #在字符串前加 ...