• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

asp.net文件上传类

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;

/// <summary>
/// Summary description for UploadFile
/// </summary>
public class UploadFile
{
    private string[] AllowFileType; //所允许的文件类型
    private double FileLength; //所允许的文件大小(KB)
    private string SavePath; //文件的存储路径
    private string SaveFile; //上传后的文件名
    private string Error; //存储错误信息
    private string FileExtesion; //上传文件的扩展名

    /// <summary>
    /// 构造函数
    /// </summary>
    /// <param name="allFileType">允许的文件类型,多个以","分开</param>
    /// <param name="fileLength">文件大小</param>
    /// <param name="savePath">保存路径</param>
    public UploadFile(string allFileType, double fileLength, string savePath)
    {
        char[] sp = { ',' };
        AllowFileType = allFileType.Split(sp);
        FileLength = fileLength * 1024;
        SavePath = savePath;
    }

    /// <summary>
    /// 返回生成的文件名
    /// </summary>
    public string FileName
    {
        get
        {
            return SaveFile;
        }
    }

    /// <summary>
    /// 返回出错信息
    /// </summary>
    public string ErrorMessage
    {
        get
        {
            return Error;
        }
    }

    /// <summary>
    /// 根据SavePath,生成文件名
    /// </summary>
    /// <returns></returns>
    private string MakeFileName(string fileType,string fileName)
    {
        string file = this.SavePath + "\\" + DateTime.Now.ToString("yyMMddhhmmss") + fileName;
        while (File.Exists(file))
        {
            file = this.SavePath + "\\" + DateTime.Now.ToString("yyMMddhhmmss") + fileName;
        }
        return file;
    }

    /// <summary>
    /// 检查文件类型
    /// </summary>
    /// <param name="fileEx">MIME内容</param>
    /// <returns></returns>
    private bool CheckFileExt(string fileEx)
    {
        bool result = false;
        for (int i = 0; i < this.AllowFileType.Length; i++)
        {
            if (fileEx.IndexOf(this.AllowFileType[i].ToLower()) > -1)
            {
                result = true;
                break;
            }
        }
        return result;
    }

    public bool UpLoad(System.Web.UI.WebControls.FileUpload file)
    {
        bool result = true;
        try
        {
            //查看文件长度
            if (file.PostedFile.ContentLength > (this.FileLength))
            {
                this.Error = "文件大小超出范允许的范围!";
                return false;
            }

            string fileName = Path.GetFileName(file.PostedFile.FileName);
            this.FileExtesion = Path.GetExtension(fileName);

            if (!CheckFileExt(this.FileExtesion.ToLower()))
            {
                this.Error = "文件类型" + this.FileExtesion + "不允许!";
                return false;
            }
            //取得要保存的文件名
            string UpFile = this.MakeFileName(this.FileExtesion, fileName);
            //保存文件
            file.PostedFile.SaveAs(UpFile);

            //返回文件名
            this.SaveFile = Path.GetFileName(UpFile);

        }
        catch (Exception e)
        {
            result = false;
            this.Error = e.Message;
        }
        return result;
    }
}


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETMVC控制器PART2发布时间:2022-07-10
下一篇:
ResolvingHttp500ServerErrorsinASP.NetandIIS5.1(转载)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap