主頁(yè) > 知識(shí)庫(kù) > asp.net讀取磁盤文件、刪除實(shí)例代碼

asp.net讀取磁盤文件、刪除實(shí)例代碼

熱門標(biāo)簽:怎么給超市做地圖標(biāo)注入駐店 巫師3為什么地圖標(biāo)注的財(cái)寶沒(méi)有 辦理400電話證件 寧波自動(dòng)外呼系統(tǒng)代理 外呼系統(tǒng)費(fèi)用一年 世紀(jì)佳緣地圖標(biāo)注怎么去掉 手機(jī)地圖標(biāo)注如何刪除 外呼系統(tǒng)代理品牌 十堰正規(guī)電銷機(jī)器人系統(tǒng)

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

    protected void ReadFile()     //讀取文件夾,文件
    {
        string savePath = @"common";
        StringBuilder outstring = new StringBuilder();
        string absSavePath = Server.MapPath(savePath);
        string[] Directorys = Directory.GetDirectories(absSavePath + @"/" + Page.User.Identity.Name);
        //for (int i = 0; i Directorys.Length; i++)
        //{
        //    Response.Write(Directorys[i] + " br/ >");
        //}
        //Response.Write("Directorys count:" + Directorys.Length + "個(gè)  br/ >--------- br >");
        string[] Files = Directory.GetFiles(absSavePath + @"" + Page.User.Identity.Name, "*");
        outstring.Append("ul>");
        for (int i = 0; i Files.Length; i++)
        {
            if (Path.GetFileName(Files[i]) != "Thumbs.db")
            {
                outstring.Append("li>img src=/"common/" + Path.GetFileName(Files[i]) + "/" style=/"width:100px;height:100px;/" />br/>input type=/"checkbox/" value=/"common/" + Path.GetFileName(Files[i]) + "/" name=/"picname/" onclick=/"getpicid();/" id=/"imgid" + i.ToString() + "/" />label for=/"imgid" + i.ToString() + "/">" + Path.GetFileName(Files[i]) + "/label>/li>");
            }
        }
        outstring.Append("/ul>");
        Response.Write(outstring.ToString());
    }

//刪除文件
        string[] strpicname = Request["imgids"].Split(new char[] { ',' });
        for (int i = 0; i strpicname.Length; i++)
        {
            File.Delete(Server.MapPath(strpicname[i].ToString()));
        }


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

//循環(huán)遍歷復(fù)選框
script language="javascript" type="text/javascript" defer="defer">
    var imgnum = document.getElementsByTagName("input");
    var imgids = "";
    function getpicid()
    {
        document.getElementById("hidimgid").value = "";
        for (var i=0;iimgnum.length;i++)
        {
            if ( imgnum[i].type == "checkbox" imgnum[i].name == "picname" imgnum[i].checked)
            {
                imgids += imgids == "" ? imgnum[i].value : "," + imgnum[i].value;
            }
        }
        document.getElementById("hidimgid").value = imgids;
    }
    /script>

您可能感興趣的文章:
  • ASP.Net動(dòng)態(tài)讀取Excel文件最簡(jiǎn)方法
  • 如何在ASP.NET Core類庫(kù)項(xiàng)目中讀取配置文件詳解
  • asp.net讀取模版并寫入文本文件
  • ASP.NET對(duì)txt文件相關(guān)操作(讀取、寫入、保存)
  • ASP.NET中上傳并讀取Excel文件數(shù)據(jù)示例
  • asp.net讀取excel文件的三種方法示例
  • ASP.NET(C#)讀取Excel的文件內(nèi)容
  • asp.net 讀取配置文件方法
  • C#/.NET讀取或修改文件的創(chuàng)建時(shí)間及修改時(shí)間詳解

標(biāo)簽:山西 景德鎮(zhèn) 泰州 嘉興 通遼 牡丹江 天門

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net讀取磁盤文件、刪除實(shí)例代碼》,本文關(guān)鍵詞  asp.net,讀取,磁盤,文件,刪除,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net讀取磁盤文件、刪除實(shí)例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于asp.net讀取磁盤文件、刪除實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章