我需要知道clickonce应用程序的安装位置。有没有办法通过C#找到这个?
答案 0 :(得分:4)
作为参考,物理文件最终在此目录中:C:\ Documents and Settings \ userprofile \ Local Settings \ Apps in Win XP和C:\ Users \\ AppData \ Local \ Apps for Windows 7。
您还可以在this question中了解详情。
答案 1 :(得分:0)
尝试Assembly.GetExecutingAssembly()
,然后检查结果的Location
属性。这将返回当前正在执行的程序集的路径。