C# Server.MapPath的使用方法

(1)WebForm中:

  HttpContext.Current.Server.MapPath("~/Files/car/");

(2)Mvc中:

  Server.MapPath()

(3)最底层的写法:

  String path = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
             path = string.Format(@"{0}Data\Log\{1}\", path, DateTime.Now.ToString("yyyy-MM-dd"));//按时间格式保存日志文件

posted @ 2015-12-01 15:01  黄德根  阅读(13324)  评论(0编辑  收藏  举报