您正在获得该路径,因为它是 ClickOnce 使用的路径。ClickOnce 应用程序安装在安装它们的用户的配置文件下。
编辑 :
方法一:
这是一种获取应用程序安装路径的方法(仅当您的应用程序已安装时才有效)(其中部分由@codeConcussion编写):
// productName is name you assigned to your app in the
// Project properties -> Publish -> Publish Settings
public static string GetInstalledFromDir(string productName)
{
using (var key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall"))
{
if (key != null)
{
var appKey = key.GetSubKeyNames().FirstOrDefault(x => GetValue(key, x, "DisplayName") == productName);
return appKey == null ? null : GetValue(key, appKey, "UrlUpdateInfo");
}
}
return null;
}
private static string GetValue(RegistryKey key, string app, string value)
{
using (var subKey = key.OpenSubKey(app))
{
if (subKey == null || !subKey.GetValueNames().Contains(value))
{
return null;
}
return subKey.GetValue(value).ToString();
}
}
以下是如何使用它:
Uri uri = new Uri(GetInstalledFromDir("ProductName"));
MessageBox.Show(Path.GetDirectoryName(HttpUtility.UrlDecode(uri.AbsolutePath)));
方法二:
你也可以试试
System.Deployment.Application.ApplicationDeployment.CurrentDeployment.ActivationUri
但我认为这个只有当你的应用程序是从互联网上安装时才有效