关于文件系统:如何在vb.net中找到exe文件的绝对路径

How do i find the absolute path of the exe file in vb.net

本问题已经有最佳答案,请猛点这里访问。

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

你好,

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

例如,如果我从C:my appmyapp.exe运行application/exe,它应该返回C:my app。

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


System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase给出了exe的名称,System.IO.Path.GetDirectoryName(...)然后将目录部分拉出。

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