程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net下文件上傳和文件刪除的代碼

asp.net下文件上傳和文件刪除的代碼

編輯:ASP.NET基礎
文件上傳
HttpPostedFile postFile = Request.Files["imgFile"];
if(postFile.FileName!=String.Empty){
       ex=postFile.FileName.Substring(postFile.FileName.LastIndexOf("."));
       fileName= DateTime.Now.ToString("yyyyMMdd") + ex;
       absPath=System.Web.HttpContext.Current.Server.MapPath("/img_ad/"+adTypeEn+"/";);

      if(!System.IO.Directory.Exists(absPath)) System.IO.Directory.CreateDirectory(absPath);   //上傳文件,要檢查一下是否建立了相關目錄
      postFile.SaveAs(absPath+fileName);
}


文件刪除
string sqlFile="select ('/img_ad/'+Ltrim(Rtrim(compName))+'/'+Ltrim(Rtrim(fileName)))as adFile from adinfo where id="+sid;
object objAd=SqlComd.CreateSqlScalar(sqlFile);
 if(objAd!=null){
       string fName = Server.MapPath(objAd.ToString());
       if(File.Exists(fName)) File.Delete(fName);     //刪除文件,別忘了檢查一下有沒有這個文件
 } 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved