ASP.net上传文件,保存到文件夹里文件名保持不变的代码是什么
1个回答
展开全部
遇到同名的文件就重叠了?
那你存入的时候就要编成各自唯一的吧
那你存入的时候就要编成各自唯一的吧
追问
那怎么实现
追答
1.存入的时候 是filename 这个你要保证是唯一的
string savePath = Server.MapPath(("./upfiles/") + filename);//Server.MapPath 获得虚拟服务器相对路径
FileUpload1.SaveAs(savePath); //
2.文件下载下来 这里的filename也只能和你存入的时候一一对应才行。
protected void Button5_Click(object sender, EventArgs e)
{
//Export("application/ms-excel", "是非题导入格式.xlsx");
DownLoadFile("downloadfiles\\是非题model.xls");
}
private void DownLoadFile(string fileName)
{
string filePath = Server.MapPath(".") + "\\" + fileName;
//string filePath="WebSites\\E-learning\\Admin\\upfiles\\是非题.xls";
if (File.Exists(filePath))
{
FileInfo file = new FileInfo(filePath);
Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); //解决中文乱码
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name)); //解决中文文件名乱码
Response.AddHeader("Content-length", file.Length.ToString());
Response.ContentType = "appliction/octet-stream";
Response.WriteFile(file.FullName);
Response.End();
}
//else
//{
// Label2.Text = "文件不存在.";
//}
}
怎么样保证这个名字唯一,那你自己定义名称的规则,依靠数据库实现了。名称肯定是要存入数据库的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询