文件操作(上传,下载,限制)

      <!--aspx文件->
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>网络文件夹</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server" Width="200px" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
            <asp:ListItem Value="-1">选择功能</asp:ListItem>
            <asp:ListItem Value="0">上传限制</asp:ListItem>
            <asp:ListItem Value="1">上传文件</asp:ListItem>
            <asp:ListItem Value="2">管理文件</asp:ListItem>
        </asp:DropDownList>
        <asp:Label ID="lbl_FolderInfo" runat="server"></asp:Label><br />
        <asp:MultiView ID="MultiView1" runat="server">
            <!--上传限制界面开始-->
            <asp:View ID="view_Configure" runat="server">
                允许上传文件的类型:
                <asp:BulletedList ID="bl_TileTypeLimit" runat="server">
                </asp:BulletedList>
                允许上传单个文件的大小:
                <asp:Label ID="lab_FileSizeLimit" runat="server" Text=""></asp:Label>
             </asp:View>
             <asp:View ID="view_Upload" runat="server">
                 <asp:FileUpload ID="FileUpload" runat="server" Width="400"/><br />
                 <asp:Button ID="btn_Upload" runat="server" Text="上传文件" OnClick="btn_Upload_Click" />
             </asp:View>
             <!--管理文件开始-->
             <asp:View ID="view_Manage" runat="server">
                <table cellpadding="5" cellspacing="0" border="0">
                    <tr>
                        <td>
                            <!--启用了AutoPostBack-->
                            <asp:ListBox ID="lb_FileList" runat="server" AutoPostBack="True" Height="300px" Width="300px" OnSelectedIndexChanged="lb_FileList_SelectedIndexChanged"></asp:ListBox></td>
                        <td valign="top">
                            <asp:Label ID="lbl_FileDescription" runat="server"></asp:Label></td>
                    </tr>
                </table>
                <asp:Button ID="btn_DownLoad" runat="server" Text="下载文件" OnClick="btn_DownLoad_Click" />
                <!--在删除前给予确定-->
                <asp:Button ID="btn_Delete" runat="server" Text="删除文件" OnClientClick="return confirm('确定删除文件!')" OnClick="btn_Delete_Click" /><br />
                <asp:TextBox ID="tb_FileNewName" runat="server" Width="300px"></asp:TextBox>
                <asp:Button ID="btn_Rename" runat="server" Text="对文件重命名" OnClick="btn_Rename_Click" />
            </asp:View>
        </asp:MultiView>
    </div>
    </form>
    
</body>
</html>

<!--aspx。cs文件->

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;
//Email:jetaimefj@163.com
//该源码下载自www.51aspx.com(51aspx.com)
using System.IO;
public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            //初始化文件夹信息
            InitFolderInfo();
            //初始化上传限制信息
            InitUploadLimit();
            //初始化列表框控件文件列表信息
            InitFileList();
        }
    }
    #region 初始化文件夹信息
    private void InitFolderInfo()
    {
        //从config中读取文件上传路径
        string strFileUpladPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
        //如果上传文件夹不存在,则根据config创建一个
        if(!Directory.Exists(Server.MapPath(strFileUpladPath)))
        {
            Directory.CreateDirectory(Server.MapPath(strFileUpladPath));
        }
        //将虚拟路径转换为物理路径
        string strFilePath = Server.MapPath(strFileUpladPath);
        //从config里读取文件夹容量限制
        double iFolderSizeLimit = Convert.ToInt32(ConfigurationManager.AppSettings["FolderSizeLimit"]);
        //声明文件夹已经使用的容量
        double iFolderCurrentSize = 0;
        //获取文件夹中的所有文件
        FileInfo[] arrFiles = new DirectoryInfo(strFilePath).GetFiles();
        //循环文件获已经使用的容量
        foreach (FileInfo fi in arrFiles)
        {
            iFolderCurrentSize += Convert.ToInt32(fi.Length / 1024);
        }
        #region 第二种获得文件夹使用大小的方法
        //DirectoryInfo dir = new DirectoryInfo(strFilePath);
        //foreach (FileSystemInfo fi in dir.GetFileSystemInfos())
        //{
        //    FileInfo finf = new FileInfo(fi.FullName);
        //    iFolderCurrentSize += Convert.ToInt32(finf.Length / 1024);
        //}
        #endregion
        //把文件夹容量和以用文件夹容量赋值给标签
        lbl_FolderInfo.Text = string.Format("文件夹容量限制:{0}M,已用容量:{1}KB", iFolderSizeLimit / 1024, iFolderCurrentSize);
    }
    #endregion
    #region 初始化上传限制信息
    private void InitUploadLimit()
    {
        //从config中读取上传文件夹类型限制并根据逗号分割成字符串数组
        string[] arrFileTypeLimit = ConfigurationManager.AppSettings["FileTypeLimit"].ToString().Split(',');
        //从config中读取上传文件大小限制
        double iFileSizeLimit = Convert.ToInt32(ConfigurationManager.AppSettings["FileSizeLimit"]);
        //遍历字符串数组把所有项加入项目编号控件
        for (int i = 0; i < arrFileTypeLimit.Length; i++)
        {
            bl_TileTypeLimit.Items.Add(arrFileTypeLimit[i].ToString());
        }
        //把文件大小限制赋值给标签
        lab_FileSizeLimit.Text = string.Format("{0:f2}M", iFileSizeLimit / 1024);
    }
    #endregion
    #region 初始化列表框控件文件列表信息
    private void InitFileList()
    {
        //从config中获取文件上传路径
        string strFileUpladPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
        //将虚拟路径转换为物理路径
        string strFilePath = Server.MapPath(strFileUpladPath);
        //读取上传文件夹下所有文件
        FileInfo[] arrFile = new DirectoryInfo(strFilePath).GetFiles();
        //把文件名逐一添加到列表框控件
        foreach(FileInfo fi in arrFile)
        {
            lb_FileList.Items.Add(fi.Name);
        }
    }
    #endregion
    #region 判断文件大小限制
    private bool IsAllowableFileSize()
    {
        //从web.config读取判断文件大小的限制
        double iFileSizeLimit = Convert.ToInt32(ConfigurationManager.AppSettings["FileSizeLimit"]) * 1024;
        //判断文件是否超出了限制
        if (iFileSizeLimit > FileUpload.PostedFile.ContentLength)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    #endregion
    #region 判断文件类型限制
    protected bool IsAllowableFileType()
    {
        //从web.config读取判断文件类型限制
        string strFileTypeLimit = ConfigurationManager.AppSettings["FileTypeLimit"].ToString();
        //当前文件扩展名是否包含在这个字符串中
        if(strFileTypeLimit.IndexOf(Path.GetExtension(FileUpload.FileName).ToLower()) >0)
            return true;
        else
            return false;
    }
    #endregion
    #region 弹出警告消息
    protected void ShowMessageBox(string strMessage)
    {
        Response.Write(string.Format("<script>alert('{0}')</script>",strMessage));
    }
    #endregion
    #region 上传文件按钮事件
    protected void btn_Upload_Click(object sender, EventArgs e)
    {
        //判断用户是否选择了文件
        if (FileUpload.HasFile)
        {
            //调用自定义方法判断文件类型否符合
            if (IsAllowableFileType())
            {
                //判断文件大小是否符合
                if (IsAllowableFileSize())
                {
                    //从web.config中读取上传路径
                    string strFileUploadPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
                    //从UploadFile控件中读取文件名
                    string strFileName = FileUpload.FileName;
                    //组合成物理路径
                    string strFilePhysicalPath = Server.MapPath(strFileUploadPath + "/") + strFileName;
                    //判断文件是否存在
                    if(!File.Exists(strFilePhysicalPath))
                    {
                        //保存文件
                        FileUpload.SaveAs(strFilePhysicalPath);
                        //更新列表框
                        lb_FileList.Items.Add(strFileName);
                        //更新文件夹信息
                        InitFolderInfo();
                        ShowMessageBox("上传成功!");
                    }
                    else
                    {
                        ShowMessageBox("文件已经存在!");
                    }
                }
                else
                {
                    ShowMessageBox("文件大小不符合要求!");
                }
            }
            else
            {
                ShowMessageBox("类型不匹配");
            }
        }
    }
    #endregion
    #region 列表框事件
    protected void lb_FileList_SelectedIndexChanged(object sender, EventArgs e)
    {
        //从config中读取文件上传路径
        string strFileUpladPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
        //从列表框中读取选择的文件名
        string strFileName = lb_FileList.SelectedValue;
        //组合成物理路径
        string strFilePhysicalPath = Server.MapPath(strFileUpladPath + "/") + strFileName;
        //根据物理路径实例化文件信息类
        FileInfo fi = new FileInfo(strFilePhysicalPath);
        //或得文件大小和创建日期赋值给标签
        lbl_FileDescription.Text = string.Format("文件大小:{0}字节<br><br>上传时间:{1}<br>", fi.Length, fi.CreationTime);
        //把文件名赋值给重命名文件框
        tb_FileNewName.Text = strFileName;
    }
    #endregion
    #region 下载文件按钮事件
    protected void btn_DownLoad_Click(object sender, EventArgs e)
    {
        //从web.config读取文件上传路径
        string strFileUploadPath = ConfigurationManager.AppSettings["FileUplodePath"].ToLower();
        //从列表框中读取选择的文件
        string strFileName = lb_FileList.SelectedValue;
        //组合成物理路径
        string FullFileName = Server.MapPath(strFileUploadPath + "/") + strFileName;

        FileInfo DownloadFile = new FileInfo(FullFileName);
        Response.Clear();
        Response.ClearHeaders();
        Response.Buffer = false;
        Response.ContentType = "application/octet-stream ";
        Response.AppendHeader("Content-Disposition ", "attachment;filename= " 
            + HttpUtility.UrlEncode(DownloadFile.FullName, System.Text.Encoding.UTF8));
        Response.AppendHeader("Content-Length ", DownloadFile.Length.ToString());
        Response.WriteFile(DownloadFile.FullName);
        Response.Flush();
        Response.End(); 
    }
    #endregion
    #region 删除文件
    protected void btn_Delete_Click(object sender, EventArgs e)
    {
        //从config中读取文件上传路径
        string strFileUpladPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
        //从列表框中读取选择的文件名
        string strFileName = lb_FileList.SelectedValue;
        //组合成物理路径
        string strFilePhysicalPath = Server.MapPath(strFileUpladPath + "/") + strFileName;
        //删除文件
        System.IO.File.Delete(strFilePhysicalPath);
        //更新文件列表框控件
        lb_FileList.Items.Remove(lb_FileList.Items.FindByText(strFileName));
        //更新文件夹信息
        InitFolderInfo();
        //更新文件描述信息
        tb_FileNewName.Text = "";
        //更新重命名文本框
        lbl_FileDescription.Text = "";
        //调用自定义消息提示
        ShowMessageBox("删除成功!");
    }
    #endregion
    #region 重命名文件
    protected void btn_Rename_Click(object sender, EventArgs e)
    {
        //从web.config中读取文件上传路径
        string strFileUpladPath = ConfigurationManager.AppSettings["FileUplodePath"].ToString();
        //从列表框中控件中读取选择的文件名
        string strFileName = lb_FileList.SelectedValue;
        //重命名文本框或得选择的文件名
        string strFileNewName = tb_FileNewName.Text;
        //组合成物理路径
        string strFilePhysicalPath = Server.MapPath(strFileUpladPath + "/") + strFileName;
        //组合成新物理路径
        string strFileNewPhysicalPath = Server.MapPath(strFileUpladPath + "/") + strFileNewName;
        //文件重命名,即获取新地址覆盖旧地址的过程
        System.IO.File.Move(strFilePhysicalPath, strFileNewPhysicalPath);
        //找到文件列表的匹配项
        ListItem li = lb_FileList.Items.FindByText(strFileName);
        //修改文字
        li.Text = strFileNewName;
        //修改值
        li.Value = strFileNewName;
        //调用自定义方法现实
        ShowMessageBox("文件覆盖成功!");
    }
    #endregion
    #region 下拉列表事件
    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        MultiView1.ActiveViewIndex = Convert.ToInt32(DropDownList1.SelectedValue);
    }
    #endregion
}

//web.config
<?xml version="1.0"?>
<!-- 
    注意: 除了手动编辑此文件以外,您还可以使用 
    Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
     “网站”->“Asp.Net 配置”选项。
    设置和注释的完整列表在 
    machine.config.comments 中,该文件通常位于 
    \Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration>
    <appSettings>
        <!--上传文件夹位置-->
        <add key="FileUplodePath" value="Upload"/>
        <!--上传文件类型-->
        <add key="FileTypeLimit" value=".zip,.rar,.jpg,.gif,.bmp,.doc"/>
        <!--限制单个文件大小,单位为KB,10240KB=10M-->
        <add key="FileSizeLimit" value="10240"/>
        <!--限制文件夹的总大小,单位为KB,102400KB=100M-->
        <add key="FolderSizeLimit" value="102400"/>
    </appSettings>
    <connectionStrings/>
    <system.web>
        <!--每次请求的文件最大为40M,最长响应时间为60秒-->
        <httpRuntime maxRequestLength="40960" executionTimeout="60"/>
        <!-- 
            设置 compilation debug="true" 将调试符号插入
            已编译的页面中。但由于这会 
            影响性能,因此只在开发过程中将此值 
            设置为 true。
        -->
        <compilation debug="true"/>
        <!--
            通过 <authentication> 节可以配置 ASP.NET 使用的 
            安全身份验证模式,
            以标识传入的用户。 
        -->
        <authentication mode="Windows"/>
        <!--
            如果在执行请求的过程中出现未处理的错误,
            则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
            开发人员通过该节可以配置
            要显示的 html 错误页
            以代替错误堆栈跟踪。

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    </system.web>
</configuration>

posted @ 2010-12-31 13:34  快乐的langYa  阅读(861)  评论(1编辑  收藏  举报