c# get assembly executable directory

纵饮孤独 提交于 2019-11-28 03:43:42

问题


I have 2 application. Example App1 and App2 When run nomal App1 will show assembly executable location. But when i call App1 from App2, it return App2 start up location.

So, how to get App1 start up path when call App1 from App2?


回答1:


You can get the directory of the currently executing assembly with this:

string assemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

GetExecutingAssembly() returns the currently executing assembly and Location is the full path or UNC path of that assembly.

Path.GetDirectoryName() returns the directory of a full path.


Note that the assembly's path is not the same as the startup path. The startup path is the working directory from which you started an application. And if your app does not change it's working directory, all apps started by the first app will have the same startup path.



来源:https://stackoverflow.com/questions/38071639/c-sharp-get-assembly-executable-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!