在App.xaml.cs中获取应用程序运行路径

发布于 2024-08-04 16:08:04 字数 37 浏览 5 评论 0原文

如何从 app.xaml.cs 本身获取应用程序的运行路径?

How can I get runnig path of my application from app.xaml.cs itself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笛声青案梦长安 2024-08-11 16:08:04

你可以尝试

Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)

AppDomain.CurrentDomain.BaseDirectory

和/或

Environment.CurrentDirectory

You could try

Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)

AppDomain.CurrentDomain.BaseDirectory

and/or

Environment.CurrentDirectory
紅太極 2024-08-11 16:08:04

您只需使用 System.Environment.GetCommandLineArgs属性来获取启动应用程序的命令行。使用 System.IO.Path 方法解析它仅提取可执行文件的文件名或完整路径。

var exeName = System.IO.Path.GetFileName(
    System.Environment.GetCommandLineArgs()[0]);
MessageBox.Show("This exe's filename is " + exeName);

You can just use the System.Environment.GetCommandLineArgs property to get the command line that started the application. Parse that with the System.IO.Path methods to extract just the executable's filename or full path.

var exeName = System.IO.Path.GetFileName(
    System.Environment.GetCommandLineArgs()[0]);
MessageBox.Show("This exe's filename is " + exeName);
飘过的浮云 2024-08-11 16:08:04

这总是有效的:

System.Windows.Forms.Application.StartupPath

This always works:

System.Windows.Forms.Application.StartupPath
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文