mono c# get application path

后端 未结 2 644
生来不讨喜
生来不讨喜 2021-02-02 16:28

I am looking to get the directory of my application it seems to be different from regular c#?

As in Path.GetDirectoryName(Application.ExecutablePath) is not

相关标签:
2条回答
  • 2021-02-02 17:28

    One correct and cross-platform solution would be

    Path.GetDirectoryName(Assembly.GetEntryAssembly().Location)
    

    Note that both Environment.CurrentDirectory and Assembly.GetExecutingAssembly().Location (more exactly, the directory thereof) are semantically wrong even though they are often - but not always - the same directory:

    • The current directory is the "working directory" and can be changed at any point in time, like the "cd" command does in a shell.
    • The executing assembly is the assembly that contains the code which is currently running, and may or may not be in the same directory as the actual application. For instance if your application is "A.exe" which has a dependency "B.dll", and some code in B.dll calls Assembly.GetExecutingAssembly(), it would result in "/path/to/B.dll".
    0 讨论(0)
  • 2021-02-02 17:28

    Try Assembly.GetExecutingAssembly().Location

    0 讨论(0)
提交回复
热议问题