.net 自带生成zip打包程序

引用using System.IO.Packaging;

第一步生成zip类

public class Zip
    {
        public string SourcePath { get; set; }
        public Zip(string sourcePath)
        {
            this.SourcePath = sourcePath;
        }
        public void zipFolder(string zipfilepath)
        {
            using (Package package = Package.Open(zipfilepath, System.IO.FileMode.Create))
            {

                DirectoryInfo directoryInfo = new DirectoryInfo(SourcePath);
                ZipDirectory(directoryInfo, package);
            }
        }
        private void ZipDirectory(DirectoryInfo di, Package pa)
        {
            foreach (FileInfo fi in di.GetFiles())
            {
                string relativepath = fi.FullName.Replace(SourcePath, String.Empty);
                relativepath = relativepath.Replace("\\", "/");
                PackagePart part = pa.CreatePart(new Uri(relativepath, UriKind.Relative), System.Net.Mime.MediaTypeNames.Application.Zip);
                using (FileStream fs = fi.OpenRead())
                {
                    CopyStream(fs, part.GetStream());
                }
            }
            foreach (DirectoryInfo sbdi in di.GetDirectories())
            {
                ZipDirectory(sbdi, pa);
            }
        }

        private void CopyStream(Stream source, Stream target)
        {
            const int bufSize = 0x1000;
            byte[] buf = new byte[bufSize];
            int byteread = 0;
            while ((byteread = source.Read(buf, 0, bufSize)) > 0)
            {
                target.Write(buf, 0, byteread);
            }
        }
    }

第二步生成目录文件,添加引用using System.IO;

string path = "";//文件存放的文件夹路径

byte[] img1 = (byte[])ds.Tables[0].Rows[0]["img1"];
File.WriteAllBytes(HttpContext.Current.Server.MapPath(path + "/img1.jpg"), img1);//生成图片

byte[] video1 = (byte[])ds.Tables[0].Rows[0]["video1"];

File.WriteAllBytes(HttpContext.Current.Server.MapPath(path + "/video1.mp4"), video1);//生成视频

File.WriteAllText(HttpContext.Current.Server.MapPath(path + "/shuoming.doc"), info, System.Text.Encoding.UTF8);//生成word文档

Zip zip = new Zip(HttpContext.Current.Server.MapPath(path));
zip.zipFolder(HttpContext.Current.Server.MapPath(path + ".zip"));//文件夹生成zip

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值