28 lines
708 B
C#
28 lines
708 B
C#
using System.IO;
|
|
using System.Web;
|
|
|
|
namespace Bootstrap.Admin.Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ProfilesModel : NavigatorBarModel
|
|
{
|
|
/// <summary>
|
|
/// 获得/设置 头像文件大小
|
|
/// </summary>
|
|
public long Size { get; private set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
public ProfilesModel(string url) : base(url)
|
|
{
|
|
var fileName = HttpContext.Current.Server.MapPath(Icon);
|
|
if (File.Exists(fileName))
|
|
{
|
|
Size = new FileInfo(fileName).Length;
|
|
}
|
|
}
|
|
}
|
|
} |