asp.net下文件上传和文件删除的代码
asp.net下文件上传和文件删除的代码
发布时间:2016-12-29 来源:查字典编辑
摘要:文件上传HttpPostedFilepostFile=Request.Files["imgFile"];if(postFile.FileNa...

文件上传

HttpPostedFilepostFile=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);

}

文件删除

stringsqlFile="select('/img_ad/'+Ltrim(Rtrim(compName))+'/'+Ltrim(Rtrim(fileName)))asadFilefromadinfowhereid="+sid;

objectobjAd=SqlComd.CreateSqlScalar(sqlFile);

if(objAd!=null){

stringfName=Server.MapPath(objAd.ToString());

if(File.Exists(fName))File.Delete(fName);//删除文件,别忘了检查一下有没有这个文件

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新asp.net教程学习
热门asp.net教程学习
编程开发子分类