asp.net讀取磁碟檔案、刪除執行個體代碼_實用技巧

來源:互聯網
上載者:User

複製代碼 代碼如下:

    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 + "個  <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()));
        }


複製代碼 代碼如下:

//迴圈遍曆複選框
<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;i<imgnum.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>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.