关于c#:应用程序路径

Application path

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

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

如何获取应用程序路径?(可执行文件所在的文件夹)


从brad abrams站点,您可能需要查看以下代码:

1
Console.WriteLine (Environment.GetCommandLineArgs()[0]);

或者,从该链接的注释中:

1
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;

确定执行应用程序的路径

1
2
   path = System.IO.Path.GetDirectoryName(
      System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase );