欢迎光临
我们一直在努力

UAC窗体应用程序默认配置信息读写的问题

建站超值云服务器,限时71元/月

UAC 是 Vista 与 Win7 安全基础。

在打开UAC的情况下,窗体应用程序默认配置信息的读取与写入,在 Program Files 文件夹下将会引发一些错误。

研究了很多朋友,多是通过提升应用程序权限,要求用户以管理员身份使用软件的方式,来解决这个问题。

提升权限来回避UAC的控制,这种解决方式,并不妥当。

研究了几天,转了好大一圈,终于初步解决了这个问题,半夜三更,担心解决的彻底,在此抛砖引玉,希望完美解决问题。

—————————————————————————————–

代码

public 构造函数()
{
ExeConfigurationFileMap tmp = new ExeConfigurationFileMap();

tmp.ExeConfigFilename = ConfigerFile();

ShiQiangConfiger = ConfigurationManager.OpenMappedExeConfiguration(tmp, ConfigurationUserLevel.None);
}

//——————————————————————-//

private string ConfigerFile()
{
string rtnValue = string.Empty;

int targetIndex = Application.ExecutablePath.LastIndexOf(@”\”);

if (targetIndex >= 0)
{
if (!System.IO.Directory.Exists(Application.CommonAppDataPath))
{
System.IO.Directory.CreateDirectory(Application.CommonAppDataPath);
}

rtnValue = System.IO.Path.Combine(Application.CommonAppDataPath, Application.ExecutablePath.Substring(targetIndex + 1) + “.Config”);

if (!System.IO.File.Exists(rtnValue))
{
//如果没文件的话,复制app.config,在CommonAppDataPath处创建个新的。
System.Configuration.Configuration tmp = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

tmp.SaveAs(rtnValue);
}
}

return rtnValue;
}

private System.Configuration.Configuration myConfiguration;

下面用 myConfiguration 就可以进行通常的配置文件操作了。

原文:http://www.cnblogs.com/sasbya/archive/2010/05/05/1727632.html

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » UAC窗体应用程序默认配置信息读写的问题
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址