码迷,mamicode.com
首页 > Web开发 > 详细

文件上传/下载/删除

时间:2017-02-07 15:08:00      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:exist   click   save   sts   ted   server   lbs   get   indexof   

【文件上传】
public void BtnFileUpLoad()
{
try{

if (FileUpLoad.PostedFile.FileName != "")
{
string path = Server.MapPath("~/Uploads/");
string NowTime = DateTime.Now.ToString("yyyyMMddHHmmss");
int pos = FileUpLoad.FileName.IndexOf(".");
string Filename =NowTime + FileUpLoad.FileName;
string FileAll = path + Filename;
//string Filename =System.IO.Path.GetExtension(FileUpLoad.FileName);
FileUpLoad.SaveAs(path + Filename);
this.lbUpLoad.Text = "文件上传成功";
this.lbShowFile.Text = Filename;
}
else
{
this.lbUpLoad.Text = "";
}
}
catch (Exception ex)
{
this.lbUpLoad.Text = "上传发生错误! 信息:" + ex.ToString();
}
}


【文件下载】
public void BtnFileUpLoad()
{
try{

if (FileUpLoad.PostedFile.FileName != "")
{
string path = Server.MapPath("~/Uploads/");
string NowTime = DateTime.Now.ToString("yyyyMMddHHmmss");
int pos = FileUpLoad.FileName.IndexOf(".");
string Filename =NowTime + FileUpLoad.FileName;
string FileAll = path + Filename;
//string Filename =System.IO.Path.GetExtension(FileUpLoad.FileName);
FileUpLoad.SaveAs(path + Filename);
this.lbUpLoad.Text = "文件上传成功";
this.lbShowFile.Text = Filename;
}
else
{
this.lbUpLoad.Text = "";
}
}
catch (Exception ex)
{
this.lbUpLoad.Text = "上传发生错误! 信息:" + ex.ToString();
}
}

【文件删除】
protected void DeleteLoad_Click(object sender, EventArgs e)
{
string fileName = this.lbShowFile.Text;
string strFilePath = Server.MapPath("~/Uploads/" + fileName);
if (File.Exists(strFilePath))
{
File.Delete(strFilePath);
}

}

文件上传/下载/删除

标签:exist   click   save   sts   ted   server   lbs   get   indexof   

原文地址:http://www.cnblogs.com/illegal/p/6374069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!