IsolatedStorage createFile无法正常工作

时间:2010-07-04 18:32:40

标签: silverlight

当我进行以下调用时,我收到了FileNotFoundException:

IsolatedStorageFileStream rootFile = store.CreateFile("abc.txt");

但是,如果我的页面上有一个文本框并执行:

IsolatedStorageFileStream rootFile = store.CreateFile(textBox1.Text)

然后这个工作。
我正在使用Silverlight 3。

为什么我收到错误的任何想法?

JD

1 个答案:

答案 0 :(得分:2)

CreateFile调用内部是否有FileNotFoundException?检查here