标签:bin color 位置 http current 上传文件 方便 sys 创建
一、路径的场景
需求上传文件到服务器,并保存到数据库
1、创建相对文件路径保存到数据库(/upload/文件名.mp4),方便外部预览http://ip/upload/文件名.mp4
2、通过绝对路径保存文件到服务器(保存到服务器某个路径,必须绝对路径才可以具体位置进行保存)
解决:
1、上传到数据库的
static string savePath = System.Web.HttpContext.Current.Server.MapPath("~/Upload"); //默认文件保存路径 string filePath = Path.Combine(savePath, test.mp4); //绝对路径 c://项目路径/Upload/test.mp4
标签:bin color 位置 http current 上传文件 方便 sys 创建
原文地址:https://www.cnblogs.com/fger/p/11428297.html