using System.IO; using System.Web; namespace Bootstrap.Admin.Models { /// /// /// public class InfosModel : NavigatorBarModel { /// /// 获得/设置 头像文件大小 /// public long Size { get; set; } /// /// /// /// public InfosModel(string url) : base(url) { var fileName = HttpContext.Current.Server.MapPath(Icon); if (File.Exists(fileName)) { Size = new FileInfo(fileName).Length; } } } }