从昨天开始,我正在尝试使用SL4在我的硬盘上写一个文件但是无法做到。我搜索了它,我做了所需的设置,如
我的代码是
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);
}
我仍然得到例外
不允许文件操作,拒绝访问路径
期待您的建议!