无法使用silverlight 4在本地文件系统上写入文件

时间:2013-05-29 07:21:15

标签: c# visual-studio-2010 silverlight-4.0

从昨天开始,我正在尝试使用SL4在我的硬盘上写一个文件但是无法做到。我搜索了它,我做了所需的设置,如

  1. 设置项目OOB
  2. 提升权限 正如我所见here
  3. 我的代码是

    try
            {
                string path =  System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "test.txt");
                if (File.Exists(path))
                {
                    File.Delete(path);
                }
    
                StreamWriter sw = File.CreateText(path);
                sw.Write("hi there");
                sw.Close();
    
                MessageBox.Show("success");
            }
    
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
    

    我仍然得到例外

      

    不允许文件操作,拒绝访问路径

    期待您的建议!

0 个答案:

没有答案