以.net core3.1为例
1、获取或设置当前工作目录的完全限定路径。
string path = System.Environment.CurrentDirectory;
输出:D:\MyWork\WebApi
2、获取或设置当前工作目录的完全限定路径。
string path = System.IO.Directory.GetCurrentDirectory();
输出:D:\MyWork\WebApi
3、获取基目录,它由程序集冲突解决程序用来探测程序集。
string path = System.AppDomain.CurrentDomain.BaseDirectory;
输出:D:\MyWork\WebApi\bin\Debug\netcoreapp3.1\