BootstrapAdmin11/Bootstrap.Admin/Models/ProfilesModel.cs

36 lines
1.1 KiB
C#
Raw Normal View History

using Microsoft.AspNetCore.Hosting;
2018-06-07 00:45:47 +08:00
using Microsoft.AspNetCore.Mvc;
using System.IO;
2016-12-10 12:23:59 +08:00
namespace Bootstrap.Admin.Models
{
/// <summary>
///
/// </summary>
public class ProfilesModel : ThemeModel
2016-12-10 12:23:59 +08:00
{
/// <summary>
/// 获得/设置 头像文件大小
/// </summary>
public long Size { get; }
/// <summary>
2016-12-10 12:23:59 +08:00
///
/// </summary>
public string FileName { get; }
/// <summary>
///
/// </summary>
2018-06-07 00:45:47 +08:00
/// <param name="controller"></param>
public ProfilesModel(ControllerBase controller) : base(controller)
2016-12-10 12:23:59 +08:00
{
var host = controller.HttpContext.RequestServices.GetService(typeof(IHostingEnvironment)) as IHostingEnvironment;
if (host == null) return;
var fileName = Path.Combine(host.WebRootPath, Icon.TrimStart('~', '/').Replace('/', '\\'));
2016-12-10 12:23:59 +08:00
if (File.Exists(fileName))
{
Size = new FileInfo(fileName).Length;
FileName = Path.GetFileName(fileName);
2016-12-10 12:23:59 +08:00
}
}
}
}