C#实现的文件上传下载工具类完整实例【上传文件自动命名】
程序员文章站
2023-12-15 08:12:58
本文实例讲述了c#实现的文件上传下载工具类。分享给大家供大家参考,具体如下:
这里给出的工具类是在vs2013环境下采用c#语言实现文件上传、下载功能。上传时,为避免文件...
本文实例讲述了c#实现的文件上传下载工具类。分享给大家供大家参考,具体如下:
这里给出的工具类是在vs2013环境下采用c#语言实现文件上传、下载功能。上传时,为避免文件名在服务器中重复,采用“服务器时间+8位随机码+文件名+文件后缀“的方式作为服务器上的文件名;下载采用的是webapi的方式进行的,下载成功后可自定义文件的保存路径。
具体源码如下所示:
using system; using system.io; using system.net; using system.net.http; using system.net.http.headers; using jyrs.util; namespace jyrs.utils { public class filehelper { /// <summary> /// 将文件名解析成文件的上传路径 /// </summary> /// <param name="filename">文件名</param> /// <param name="path">文件路径</param> /// <returns path>文件在服务器上的路径</returns> public static string transpath(string filename, string path) { createdir(path); //取服务器时间+8位随机码作为部分文件名,确保文件名无重复 string nowstr = datetime.now.tostring("yyyymmddhhmmssff") + global.createrandomcode(8); // 去掉后缀的文件名 string filenamestr = filename.substring(0, filename.lastindexof(".")); // 文件后缀 string suffix = filename.substring(filename.lastindexof(".") + 1); if (filename.trim() != "") { // 如果名称不为"",说明该文件存在,否则说明该文件不存在 path += "\\" + filenamestr + nowstr + "." + suffix;// 定义上传路径 } return path; } /// <summary> /// 创建文件目录 /// </summary> /// <param name="root">根目录</param> /// <returns ></returns> private static void createdir(string root) { // 检查目录 if (!directory.exists(system.web.httpcontext.current.server.mappath(root))) { directory.createdirectory(system.web.httpcontext.current.server.mappath(root)); } } /// <summary> /// 根据文件在服务器上的路径下载文件,此处采用的是webapi的方式进行文件下载,下载成功后可自定义文件的保存路径 /// </summary> /// <param name="filename">文件名</param> /// <param name="path">文件路径</param> /// <returns></returns> public static httpresponsemessage download(string filename, string path) { try { var stream = new filestream(path, filemode.open); httpresponsemessage response = new httpresponsemessage(httpstatuscode.ok); response.content = new streamcontent(stream); response.content.headers.contenttype = new mediatypeheadervalue("application/octet-stream"); response.content.headers.contentdisposition = new contentdispositionheadervalue("attachment") { filename = filename }; return response; } catch { return new httpresponsemessage(httpstatuscode.nocontent); } } } }
controller层调用类
[httpget] public httpresponsemessage uploadanddownload() { //文件上传到服务器上的根目录 string root = system.web.hosting.hostingenvironment.mappath(@"~/upload"); string filename = "测试.docx"; //解析文件在服务器上的上传路径 string path = filehelper.transpath(filename, root); //获取要上传的文件 var files = httpcontext.current.request.files; httppostedfile file = httpcontext.current.request.files[0]; //保存文件 file.saveas(system.web.httpcontext.current.server.mappath(path)); //下载word文件 return filehelper.download(filename, path); }
view层:
<a href="http://localhost:60179/api/ceshicontroller/uploadanddownload" rel="external nofollow" "> 导出 </a>
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#文件操作常用技巧汇总》、《c#遍历算法与技巧总结》、《c#程序设计之线程使用技巧总结》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》及《c#面向对象程序设计入门教程》
希望本文所述对大家c#程序设计有所帮助。