我尝试过以下代码:
imports system.io
imports system.io.isolatedstorage
private sub Button_Click(sender as system.object, e as system.windows.routedeventargs) handles button1.click
dim isoStore As IsolatedStorageFile = isolatedstoragefile.getuserstoreforapplication
isostore.createfile("c:\test.txt")
end sub
当我在Windows手机模拟器上运行代码时,它显示异常“在isolatedstoragefilestream上不允许操作”
答案 0 :(得分:1)
Windows Phone不像PC操作系统,有没有 C:\ - 每个应用程序都有自己的包含区域,您可以在其中存储和访问文件,因此名称为IsolatedStorage
。
GeekChamp has a great tutorial on IsolatedStorage
,在C#中。
对于VB.Net,以下代码示例应该可以帮助您开始使用IsolatedStorage
:
http://code.msdn.microsoft.com/wpapps/VBWP8ImageFromIsolatedStora-11071695