当我进行以下调用时,我得到了FileNotFoundException:
IsolatedStorageFileStream rootFile = store.CreateFile("abc.txt");但是,如果我的页面上有一个文本框并执行以下操作:
IsolatedStorageFileStream rootFile = store.CreateFile(textBox1.Text)然后这就行了。
我使用的是Silverlight 3。
你知道为什么我会得到这个错误吗?
JD
发布于 2010-07-05 02:41:53
CreateFile调用的FileNotFoundException是内部的吗?检查here。
https://stackoverflow.com/questions/3175744
复制相似问题