我使用了以下示例,但我仍然有例外:
System.Security.Permissions.SecurityPermission 以下是技术支持人员的诊断信息: 请求类型'System.Security.Permissions.SecurityPermission,mscorlib
的许可管理员表示用户凭证具有读写的完全权限
IntPtr userToken = IntPtr.Zero;
bool success = External.LogonUser(
"userID",
"domain.com",
"MyPassword",
(int) AdvApi32Utility.LogonType.LOGON32_LOGON_INTERACTIVE, //2
(int) AdvApi32Utility.LogonProvider.LOGON32_PROVIDER_DEFAULT, //0
out userToken);
if (!success)
{
throw new SecurityException("Logon user failed");
}
using (WindowsIdentity.Impersonate(userToken))
{
//Create a new GUID, extract the extension and create a new unique filename
string strFileGUID = System.Guid.NewGuid().ToString();
string extension = Path.GetExtension(attachment.AttachmentFileName);
string tempfilename = strFileGUID + extension;
string path = "ServerPath";
//Open a filestream and write the contents of the file at server path
FileStream fs = new FileStream(path, FileMode.Create, FileAccess.Write );
fs.Write(fileContent.Content, 0, fileContent.Content.Length);
fs.Flush();
fs.Close();
}
我可以帮忙解决这个问题吗?
答案 0 :(得分:0)
您的代码未以完全信任方式运行,或者未获得正确的.Net权限以执行PInvoke或访问本地文件。它与Windows用户权限无关。链接的问题将帮助您开始使用.Net CAS - 代码访问安全性 - Why am I getting a System.Security.Permissions.SecurityPermission error in my .NET Application?。
一种简单的检查方法是在本地驱动器上本地运行您的应用程序 - 应该获得完全信任并且不再获得CAS例外。