附件上传
记录一种上传文件的方法。原理比较简单,直接看代码:
#region 附件上传 /// <summary> /// 附件上传 /// </summary> /// <param name="strReportType">报告类型</param> /// <param name="relativePath">相对路径</param> /// <returns></returns> public static Dictionary<string, string> UploadFilesToPatch(string strReportType, out string relativePath,out string outMsg) { ///遍历File表单元素 HttpFileCollection files = HttpContext.Current.Request.Files; string strMsg = string.Empty; outMsg = string.Empty; HttpPostedFile postedFile; try { int nFilelenght = Convert.ToInt32(System.Web.Configuration.WebConfigurationManager.AppSettings["maxRequestLength"]) * 1024; for (int iFile = 0; iFile < files.Count; iFile++) { //检查文件扩展名 postedFile = files[iFile]; string fileName, fileExtension; fileName = System.IO.Path.GetFileName(postedFile.FileName).ToLower(); if (fileName == null || fileName == string.Empty) { continue; } fileExtension = System.IO.Path.GetExtension(fileName).ToLower(); if (IsAllowExtension(fileExtension)) { if (nFilelenght < postedFile.ContentLength) { strMsg += fileName + ": 文件大小不能超过 " + nFilelenght.ToString() + " Bytes"; break; } } else { strMsg += fileName + ":不支持该文件格式;"; break; } } //文件根路径 string rootPath = ConfigurationManager.AppSettings["ReportAttachPath"]; //文件相对路径 relativePath = DateTime.Now.Year + "/" + strReportType + "/"; if (strMsg == string.Empty) { //取得文件上传目录 if (rootPath == "" || rootPath == null) { return null; } //检查目录是否存在 if (!System.IO.Directory.Exists(rootPath + relativePath)) { System.IO.Directory.CreateDirectory(rootPath + relativePath); } //上传文件 Dictionary<string, string> result = new Dictionary<string, string>(); string strFileName; DateTime time; for (int iFile = 0; iFile < files.Count; iFile++) { if (files[iFile].FileName == null || files[iFile].FileName == string.Empty) { continue; } time = DateTime.Now; strFileName = System.IO.Path.GetFileName(files[iFile].FileName); files[iFile].SaveAs(rootPath + relativePath + "R" + time.ToString("yyyy-MM-dd-hh-mm-ss") + time.Ticks.ToString() + strFileName); result.Add("R" + time.ToString("yyyy-MM-dd-hh-mm-ss") + time.Ticks.ToString() + strFileName, strFileName); } return result; } else { outMsg = strMsg; return null; } } catch (System.Exception Ex) { throw Ex; } } /// <summary> /// 判断文件后缀名是否被允许上传 /// </summary> /// <param name="fileExtension">后缀名</param> /// <returns></returns> public static bool IsAllowExtension(string fileExtension) { if (fileExtension == null || fileExtension == string.Empty) { return false; } if (fileExtension.IndexOf('.') >= 0) { fileExtension = fileExtension.Substring(fileExtension.IndexOf('.')).ToLower(); } else { fileExtension = fileExtension.ToLower(); } string[] strFileExtension = System.Web.Configuration.WebConfigurationManager.AppSettings["fileExtension"].Split(); foreach (string fe in strFileExtension) { if (fileExtension == fe) { return false; } } return true; } #endregion
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端