C#判斷檔案和檔案夾是否存在 不存在則建立

來源:互聯網
上載者:User

標籤:os   檔案   資料   io   re   c   

using System.IO;
string path = @"D:\accountDaoRu\";
        if (Directory.Exists(path) == false)
        {
            Directory.CreateDirectory(path);
        }

if (Directory.Exists(Server.MapPath(~/upimg/hufu)) == false)//如果不存在就建立file檔案夾{Directory.CreateDirectory(Server.MapPath(~/upimg/hufu));}//Directory.Delete(Server.MapPath(~/upimg/hufu), true);//刪除檔案夾以及檔案夾中的子目錄,檔案//判斷檔案的存在if (File.Exists(Server.MapPath(~/upimg/Data.html))){Response.Write(Yes);//存在檔案}else{Response.Write(No);//不存在檔案File.Create(MapPath(~/upimg/Data.html));//建立該檔案}string name = GetFiles.FileName;//擷取已上傳檔案的名字string size = GetFiles.PostedFile.ContentLength.ToString();//擷取已上傳檔案的大小string type = GetFiles.PostedFile.ContentType;//擷取已上傳檔案的MIMEstring postfix = name.Substring(name.LastIndexOf(.) + 1);//擷取已上傳檔案的尾碼string ipath = Server.MapPath(upimg) +\\+ name;//擷取檔案的實際路徑string fpath = Server.MapPath(upfile) + \\ + name;string dpath = upimg\\ + name;//判斷寫入資料庫的虛擬路徑ShowPic.Visible = true;//啟用ShowText.Visible = true;//啟用//判斷檔案格式if (name == ) {Response.Write(<scriptalert(‘上傳檔案不可為空‘)</script);}else{if (postfix == jpg || postfix == gif || postfix == bmp || postfix == png){GetFiles.SaveAs(ipath);ShowPic.ImageUrl = dpath;ShowText.Text = 你上傳的圖片名稱是: + name + + 檔案大小: + size + KB + + 檔案類型: + type + + 存放的實際路徑為: + ipath;}else{ShowPic.Visible = false;//隱藏圖片GetFiles.SaveAs(fpath);//由於不是圖片檔案,因此轉存在upfile這個檔案夾ShowText.Text = 你上傳的檔案名稱是: + name + + 檔案大小: + size + KB + + 檔案類型: + type + + 存放的實際路徑為: + fpath;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.