我目前在我的WPF應用程序中具有以下代碼,它完全符合我的要求,但是,在發佈此代碼時,它不一定能夠訪問這些文件夾位置他們不會指向正確的目錄,也不會存在這些文件夾。在WPF應用程序中本地存儲數據文件的文件夾
我希望有人可以告訴我什麼是將某些東西保存到本地文件夾的最佳方式?
無論是否在應用程序文件夾本身內部也沒有問題。
我目前使用的文件的寫代碼:
using (Stream stream = File.Open(@"..\..\Templates\data.bin", FileMode.Create))
{
BinaryFormatter bin = new BinaryFormatter();
bin.Serialize(stream, templateList);
}
我目前使用的文件的加載代碼:
using (Stream stream = File.Open(@"..\..\Templates\data.bin", FileMode.Open))
{
BinaryFormatter bin = new BinaryFormatter();
templateList = (List<Template>)bin.Deserialize(stream);
}
不知道我的問題吧,也許[獨立存儲(http://msdn.microsoft.com /en-us/library/3ak841sy(v=vs.100).aspx)是你在找什麼? – sll 2012-03-11 21:50:11