欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET 在下载文件时对其重命名的思路及实现方法

程序员文章站 2024-03-01 08:05:34
有些时候为了保证文件再上传时不会覆盖掉之前上传的文件,同时由于上传的目标目录里的文件可能很多,这个时候一个一个查是不太好的事情,所以这里可以自动生成guid使文件名重命名成...
有些时候为了保证文件再上传时不会覆盖掉之前上传的文件,同时由于上传的目标目录里的文件可能很多,这个时候一个一个查是不太好的事情,所以这里可以自动生成guid使文件名重命名成guid_原来的名称.扩展名。但是在下载的时候最好可能保证恢复到原来的名称。这个时候听伤神的。搜了一下相关资料后得知可使用response来解决。具体代码如下。

[csharp] 
复制代码 代码如下:

<pre name="code" class="csharp">string path = server.mappath("aa\\ahaakladahsasdas_bb.zip"); 
            string newfilename = ""; 
            if (file.exists(path)) 
            { 
                fileinfo fi = new fileinfo(path); 
                response.clear();//clear 方法删除缓冲区中的所有 html 输出。但 clear 方法只删除响应正文 
                //而不删除响应标题。可以用该方法处理错误情况。 
                response.clearheaders(); 
                response.buffer = false;//这句话的意思就是指明输出页面是否被缓冲,当属性值为true时, 
                //服务器将不会向客户端发送任何信息,直到所有程序执行完或者遇到  
                //response.flush或response.end语句,才会释放缓冲区的信息。 
                string filename = path.getfilename(path); 
                newfilename = newfilename + filename.substring(filename.lastindexof(".")); 
                response.clear(); 
                response.clearheaders(); 
                response.buffer = false; 

                newfilename = httputility.urlencode(newfilename);// 这一步弹出下载保存的对话框,出现文件名乱码,但变量中的文件名是正常的。   
                response.appendheader("content-disposition", "attachment;filename=" + newfilename);//为用户保存文件是显示的名称 
                //告诉客户端这个响应内容的类型为attachment 你是通过response.appendheader("content-type", "attachment"); 申明的。 

                response.appendheader("content-length", fi.length.tostring()); 
                response.contenttype = "application/octet-stream"; 
                response.writefile(newfilename);//用response来返回文件的路径   
                response.flush();//清空response   
                response.end(); 
                //response.end(); 如果抛异常的话可使用 
                //httpcontext.current.applicationinstance.completerequest(); 
            } 
            else 
            { 
                response.write("<script langauge=javascript>alert(‘文件不存在!');</script>"); 
            }

</pre><br> 
<br> 
<pre></pre> 
<p></p> 
<pre></pre> 
<p></p> 
<pre></pre>