[ Isolated Storage ]
重要的类 :
IsolatedStorageFile : 用于操控隔离存储空间里面的目录以及文件
IsolatedStorageFileStream : 用于读写操控隔离存储空间里面的文件流
IsolatedStorageSettings : 用于存储程序配置信息的 Dictionary
这个独立空间是一个逻辑空间 , 不是物理空间
目录操作
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication())
{
file. CreateDirectory(folderName);
}
文件操作
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication()) 获得独立存储空间目录
{
if (!file. DirectoryExists(folderName)) 文件要创建的目录必须已经存在
{
file. CreateDirectory(folderName);
}
IsolatedStorageFileStream stream = file. CreateFile(fileName); 创建文件
stream.Close(); 如果不需要对文件进行内容操作 , 则关闭文件句柄流
}
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication())
{
if (!file. FileExists(fileName))
{
if (!file. DirectoryExists(folderName))
{
file. CreateDirectory(folderName);
}
}
new IsolatedStorageFileStream(fileName, FileMode. CreateNew, file)) 会自动创建文件
using ( StreamWriter sw = new StreamWriter(new IsolatedStorageFileStream(fileName, FileMode. CreateNew, file)))
{
sw.Write( MsgTextBox.Text.Trim());
MessageBox.Show("数据写入成功");
MsgTextBox.Text = string.Empty;
sw.Close();
}
}
应用程序配置信息
IsolatedStorageSettings settings = IsolatedStorageSettings. ApplicationSettings;
settings.Add("Name", SettingTextBox.Text.Trim());
settings.Save();
MessageBox.Show("保存成功");
SettingTextBox.Text = string.Empty;
重要的类 :
IsolatedStorageFile : 用于操控隔离存储空间里面的目录以及文件
IsolatedStorageFileStream : 用于读写操控隔离存储空间里面的文件流
IsolatedStorageSettings : 用于存储程序配置信息的 Dictionary
这个独立空间是一个逻辑空间 , 不是物理空间
目录操作
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication())
{
file. CreateDirectory(folderName);
}
文件操作
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication()) 获得独立存储空间目录
{
if (!file. DirectoryExists(folderName)) 文件要创建的目录必须已经存在
{
file. CreateDirectory(folderName);
}
IsolatedStorageFileStream stream = file. CreateFile(fileName); 创建文件
stream.Close(); 如果不需要对文件进行内容操作 , 则关闭文件句柄流
}
using ( IsolatedStorageFile file = IsolatedStorageFile. GetUserStoreForApplication())
{
if (!file. FileExists(fileName))
{
if (!file. DirectoryExists(folderName))
{
file. CreateDirectory(folderName);
}
}
new IsolatedStorageFileStream(fileName, FileMode. CreateNew, file)) 会自动创建文件
using ( StreamWriter sw = new StreamWriter(new IsolatedStorageFileStream(fileName, FileMode. CreateNew, file)))
{
sw.Write( MsgTextBox.Text.Trim());
MessageBox.Show("数据写入成功");
MsgTextBox.Text = string.Empty;
sw.Close();
}
}
应用程序配置信息
IsolatedStorageSettings settings = IsolatedStorageSettings. ApplicationSettings;
settings.Add("Name", SettingTextBox.Text.Trim());
settings.Save();
MessageBox.Show("保存成功");
SettingTextBox.Text = string.Empty;