最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

c#文件的復(fù)制,移動,創(chuàng)建(實例代碼)

 更新時間:2013年04月21日 22:01:55   作者:  
c#文件的復(fù)制,移動,創(chuàng)建(實例代碼),需要的朋友可以參考一下

復(fù)制代碼 代碼如下:

protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        this.List();
    }

}
protected void Button1_Click(object sender, EventArgs e)
{
    if (TextBox2.Text == "")
    {
        Response.Write("<script language=javascript>alert('文件名錯誤!');location='javascript:history.go(-1)'</script>");
    }
    else
    {
        try
        {
            string path = Server.MapPath("File") + "\\" + TextBox2.Text + DropDownList1.Text;
            FileInfo fi = new FileInfo(path);
            if (!fi.Exists)//如果文件不存在
            {
                fi.Create();//創(chuàng)建文件
                Label2.Text = "創(chuàng)建成功!文件名:" + TextBox2.Text + DropDownList1.Text;
                List();
            }
        }
        catch (Exception error)
        {
            Response.Write(error.ToString());
        }
    }
}
protected void Button2_Click(object sender, EventArgs e)
{
    try
    {
        string path = Server.MapPath("File/") + Session["txt"];
        string path2 = Server.MapPath("File/") + "復(fù)制" + Session["txt"];
        FileInfo fi = new FileInfo(path);
        if (fi.Exists)
        {
            fi.CopyTo(path2);//將指定路徑文件夾中的文件拷貝到該文件夾中,并將該文件改名
        }
        Label2.Text = "復(fù)制" + Session["txt"] + "成功!" + "文件為:" + ("復(fù)制" + Session["txt"].ToString());
        List();
    }
    catch (Exception error)
    {
        Label2.Text = "復(fù)制文件出錯,該文件已被復(fù)制過!";
    }
}
protected void Button4_Click(object sender, EventArgs e)
{
    string path = Server.MapPath("File/") + ListBox1.SelectedValue.ToString();
    string path2 = Server.MapPath("file2/") + ListBox1.SelectedValue.ToString();
    FileInfo fi = new FileInfo(path);
    FileInfo fi2 = new FileInfo(path2);
    if (fi.Exists)
    {
        if (!fi2.Exists)
        {
            fi.MoveTo(path2);//將指定文件夾路徑中的文件移動到另一個路徑中的文件夾
            List();
        }
        else
        {
            Response.Write("<script language=javascript>alert('目標(biāo)文件夾文件已經(jīng)存在,不能移動改文件!');location='javascript:history.go(-1)'</script>");
        }
    }

}
protected void Button3_Click(object sender, EventArgs e)
{
    if (Session["txt"] == null)
    {
        Label2.Text = "請選中文件后在執(zhí)行刪除操作!";
    }
    FileInfo fi = new FileInfo(Server.MapPath("File/" + Session["txt"]));
    if (fi.Exists)
    {
        fi.Delete();//刪除文件
        Label2.Text = "刪除" + Session["txt"] + "文件成功!";
        List();
        Session.Clear();//清空變量Session
    }

}
protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    Session["txt"] = ListBox1.SelectedValue.ToString();
}
public void List()//獲取指定文件夾文件名,并綁定ListBox控件顯示在頁面中
{
    DataTable dt = new DataTable();
    dt.Columns.Add(new DataColumn("Name", typeof(string)));
    string serverPath = Server.MapPath("File");
    DirectoryInfo dir = new DirectoryInfo(serverPath);
    foreach (FileInfo fileName in dir.GetFiles())
    {
        DataRow dr = dt.NewRow();
        dr[0] = fileName;
        dt.Rows.Add(dr);
    }
    ListBox1.DataSource = dt;
    ListBox1.DataTextField = "Name";
    ListBox1.DataValueField = "Name";
    ListBox1.SelectedIndex = 0;
    ListBox1.DataBind();
}


相關(guān)文章

最新評論

蒙山县| 枣强县| 牙克石市| 垦利县| 黎平县| 宣武区| 平谷区| 株洲市| 盈江县| 南京市| 务川| 巩义市| 衡水市| 巴东县| 连平县| 伊宁市| 兴和县| 宁阳县| 祁连县| 岳普湖县| 健康| 肃北| 兴义市| 凤山县| 古交市| 大化| 隆德县| 丘北县| 洛宁县| 贵南县| 黑水县| 离岛区| 固原市| 长沙市| 贵南县| 寻乌县| 南投县| 凌源市| 沾益县| 绥芬河市| 买车|