欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時間:2007年09月10日 21:45:21   作者:  
文件上傳
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);   //上傳文件,要檢查一下是否建立了相關(guān)目錄
      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);     //刪除文件,別忘了檢查一下有沒有這個文件
 } 

相關(guān)文章

最新評論