首页 > 技术文章 > C# Server.MapPath的使用方法

Kendy 2019-03-05 15:38 原文

(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"));//按时间格式保存日志文件

推荐阅读