如何确定用于启动当前应用程序的路径?


How to determine the path that was used to start the current application?

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

我们如何确定正在运行的应用程序的文件系统位置?


如果你在控制台上工作,使用这个

AppDomain.CurrentDomain.BaseDirectory

或在Windows窗体上使用

1
Application.StartupPath


Environment.GetCommandLineArgs()[0];