C# 获取(非)Web程序根目录的可用方法

发布时间:2020-05-14编辑:脚本学堂
c#代码获取web程序或非web程序的根目录,都有哪些方法呢,本文为大家提供几个思路,感兴趣的朋友,快看看吧。

c#获取程序根目录的可选方法。

一、非Web程序
1、AppDomain.CurrentDomain.Basedirectory
2、Environment.CurrentDirectory
3、HttpRuntime.BinDirectory
The path to the current application's/bin directory.

二、Web程序
HttpCurrent.Context.Server.Mappath();