如何在vb.net中找到exe文件的绝对路径

发布于 2024-10-11 23:11:25 字数 355 浏览 7 评论 0原文

可能的重复:
如何获取应用程序的控制台应用程序中 .NET 中的路径?

嗨,

我想找到 exe 文件运行位置的绝对路径。

即,如果我从 c:\my-app\myapp.exe 运行我的应用程序/exe,那么它应该返回 c:\my-app。

我的目标是在 db 文件夹中找到我的数据库位置。

Possible Duplicate:
How can I get the application's path in .NET in a console app?

Hi,

I would like to find the absolute path from where my exe file is running.

i.e if i run my application/exe from c:\my-app\myapp.exe then it should return c:\my-app.

My target is to find my database location inside the db folder.

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

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

发布评论

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

评论(1

陈独秀 2024-10-18 23:11:25

System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase 为您提供 exe 的名称,System.IO.Path.GetDirectoryName(...)然后拉出目录部分。

请参阅 http://msdn.microsoft.com/en-us/library/ aa457089.aspx#howtoexecutingapppath_topic2

System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase gives you the name of the exe, and System.IO.Path.GetDirectoryName(...) then pulls the directory part out.

See http://msdn.microsoft.com/en-us/library/aa457089.aspx#howtoexecutingapppath_topic2

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