You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
923 B

using VOL.Core.BaseProvider.ServerMapPath;
using System;
using System.Collections.Generic;
using System.Text;
using VOL.Core.Extensions.AutofacManager;
namespace VOL.Core.Extensions
{
public static class ServerExtension
{
/// <summary>
/// 返回的路径后面不带/,拼接时需要自己加上/
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
public static string MapPath(this string path)
{
return MapPath(path, false);
}
/// <summary>
///
/// </summary>
/// <param name="path"></param>
/// <param name="rootPath">获取wwwroot路径</param>
/// <returns></returns>
public static string MapPath(this string path,bool rootPath)
{
return AutofacContainerModule.GetService<IPathProvider>().MapPath(path,rootPath);
}
}
}