无法打开log.txt文件

时间:2011-09-14 08:12:53

标签: silverlight

我想创建日志文件。 这是我尝试做的代码

using( IsolatedStorageFile isoFile = IsolatedStorageFile.GetUserStoreForApplication() )
                {
                    using( IsolatedStorageFileStream isoStream = new IsolatedStorageFileStream( @"C:/Log.txt", FileMode.OpenOrCreate, isoFile ) )
                    {
                        using( StreamWriter sw = new StreamWriter( isoStream ) )
                        {

                                    .
                                    .                                        
                                    .
                        }
                    }
                }

但是我在行

中得到了一个例外

使用(IsolatedStorageFileStream isoStream = new IsolatedStorageFileStream(@“C:\ Log.txt”,FileMode.OpenOrCreate,isoFile))

异常:IsolatedStorageFileStream上不允许操作。

我该怎么做才能解决这个问题?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

不要在ISO文件名中包含完整路径或驱动器名称。

隔离存储文件是使用相对文件名创建的,因为它们存储在不受您控制的子文件夹中。