之前寫入文件:文件訪問問題
using (StreamWriter outfile = new StreamWriter(filePath, false, System.Text.Encoding.UTF8))
{
outfile.Write(content);
}
我檢查文件寫入accsses使用此:
public bool CheckIfAccessToFileIsGranted(string filePath)
{
try
{
new FileIOPermission(FileIOPermissionAccess.Write, filePath).Demand();
return true;
}
catch (SecurityException)
{
return false;
}
}
儘管有上述功能的事實給予我的評價(返回true) ,我在打開流時遇到了UnauthorizedAccessException。爲什麼?
問候
+1只爲最後一句話... – 2010-11-19 18:19:29