What's the best way to get the directory from which an assembly is executing

前端 未结 7 1398
说谎
说谎 2020-12-08 21:40

For my apps, I store some configuration file in xml along with the assembly(exe), and something other temporary files for proccessing purpose.

I found some quirk w

7条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 22:15

    I'd try something like this from the following link:

    string path;
    path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase );
    MessageBox.Show( path );
    

提交回复
热议问题