代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.NET
】
同时下载多个文件或者一个文件夹
作者:
/ 发布于
2016/2/15
/
795
可以用ICSharpCode.SharpZipLib.dll这个第三方组件进行压缩后下载 这个是压缩与解压缩的部分代码
压缩文件 using System; using ICSharpCode.SharpZipLib; using ICSharpCode.SharpZipLib.Checksums; using System.IO; using ICSharpCode.SharpZipLib.Zip; using System.Collections; namespace wsUpFiles { ///<summary> /// Common 的摘要说明。 ///</summary> publicclass Common { public Common() { // // TODO: 在此处添加构造函数逻辑 // } ///<summary> /// 压缩文件 ///</summary> ///<param name="sourceFileNames">压缩文件名称集合</param> ///<param name="destFileName">压缩后文件名称</param> ///<param name="password">密码</param> publicstaticvoid zipFile(string path,string destFileName) { Crc32 crc =new Crc32(); ZipOutputStream s =new ZipOutputStream(File.Create(destFileName)); s.Password=""; s.SetLevel(6); // 0 - store only to 9 - means best compression //定义 System.IO.DirectoryInfo myDir =new DirectoryInfo(path); if(myDir.Exists ==true) { System.IO.FileInfo[] myFileAry = myDir.GetFiles(); //循环提取文件夹下每一个文件,提取信息, foreach (FileInfo objFiles in myFileAry) { FileStream fs = File.OpenRead(objFiles.FullName); byte[] buffer =newbyte[fs.Length]; fs.Read(buffer, 0, buffer.Length); ZipEntry entry =new ZipEntry(objFiles.FullName); entry.DateTime = DateTime.Now; entry.Size = fs.Length; fs.Close(); crc.Reset(); crc.Update(buffer); entry.Crc = crc.Value; s.PutNextEntry(entry); s.Write(buffer, 0, buffer.Length); } s.Finish(); s.Close(); } } } } 要对压缩文件加密时,要s.Password ="aaa"; aaa为密码。 解压文件 ///<summary> /// 解压文件 ///</summary> ///<param name="sourceFileName">被解压文件名称</param> ///<param name="destPath">解压后文件目录</param> ///<param name="password">密码</param> publicstaticvoid unzipFile(string sourceFileName,string destPath,string fileType) { ZipInputStream s =new ZipInputStream(File.OpenRead(sourceFileName)); ZipEntry theEntry; ArrayList al=new ArrayList(); while ((theEntry = s.GetNextEntry()) !=null) { string fileName=Path.GetFileName(theEntry.Name); if(fileName!="") { fileName=destPath+"\\"+fileName; if(!Directory.Exists(destPath)) { Directory.CreateDirectory(destPath); } FileStream streamWriter = File.Create(fileName); int size =2048; byte[] data =newbyte[2048]; s.Password=""; while (true) { size = s.Read(data, 0, data.Length); if (size >0) { streamWriter.Write(data, 0, size); } else { break; } } streamWriter.Close(); } } s.Close(); } 注意:程序的压缩过的文件,要通过系统上的工具解压出来的路径会相当多,因其在压缩时保留了原来的绝对路径,但压缩的文件中只包含所压缩的目标文件,当用程序解压出来的文件是相对的文件路径。
试试其它关键字
下载
下载多个文件
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3