取得Web程序和非Web程序的根目录的N种取法(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();

 

 

TraceBack: http://www.cnblogs.com/goody9807/archive/2006/10/20/534880.html

你可能感兴趣的:(Web)