我怎么知道哪个是应用程序的当前文件夹?
我的意思是...有没有办法知道正在运行的代码中exe的位置?
最佳答案
string fullAppName = Assembly.GetCallingAssembly().GetName().CodeBase;
string fullAppPath = Path.GetDirectoryName(fullAppName);
关于c# - 精简框架当前文件夹,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1106436/