1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
public static bool CompressionZip(string strZipPath, List<string> listFolderOrFilePath) { return CompressionZip(strZipPath, listFolderOrFilePath, string.Empty); }
public static bool CompressionZip(string strZipPath, List<string> listFolderOrFilePath, string strPassword) { try { ZipOutputStream ComStream = new ZipOutputStream(File.Create(strZipPath)); ComStream.SetLevel(9); if (!string.IsNullOrEmpty(strPassword)) { ComStream.Password = strPassword; } foreach (string strFolderOrFilePath in listFolderOrFilePath) { if (Directory.Exists(strFolderOrFilePath)) { CompressionZipDirectory(strFolderOrFilePath, ComStream, string.Empty); } else if (File.Exists(strFolderOrFilePath)) { FileStream fileStream = File.OpenRead(strFolderOrFilePath); byte[] btsLength = new byte[fileStream.Length]; fileStream.Read(btsLength, 0, btsLength.Length); ZipEntry zipEntry = new ZipEntry(new FileInfo(strFolderOrFilePath).Name); ComStream.PutNextEntry(zipEntry); ComStream.Write(btsLength, 0, btsLength.Length); } } ComStream.Finish(); ComStream.Close(); return true; } catch (Exception ex) { TXTHelper.Logs(ex.ToString()); return false; } }
private static void CompressionZipDirectory(string strRootPath, ZipOutputStream ComStream, string strSubPath) { try { ZipEntry zipEntry = new ZipEntry(Path.Combine(strSubPath, Path.GetFileName(strRootPath) + "/")); ComStream.PutNextEntry(zipEntry); ComStream.Flush(); foreach (string strFolder in Directory.GetDirectories(strRootPath)) { CompressionZipDirectory(strFolder, ComStream, Path.Combine(strSubPath, Path.GetFileName(strRootPath))); } foreach (string strFileName in Directory.GetFiles(strRootPath)) { FileStream fileStream = File.OpenRead(strFileName); byte[] btsLength = new byte[fileStream.Length]; fileStream.Read(btsLength, 0, btsLength.Length); zipEntry = new ZipEntry(Path.Combine(strSubPath, Path.GetFileName(strRootPath) + "/" + Path.GetFileName(strFileName))); ComStream.PutNextEntry(zipEntry); ComStream.Write(btsLength, 0, btsLength.Length); if (fileStream != null) { fileStream.Close(); fileStream.Dispose(); } } if (zipEntry != null) { zipEntry = null; } GC.Collect(); GC.Collect(1); } catch (Exception ex) { TXTHelper.Logs(ex.ToString()); } }
public static bool DeCompressionZip(string strZipPath, string strDeCompressionPath) { return DeCompressionZip(strZipPath, strDeCompressionPath, string.Empty); }
public static bool DeCompressionZip(string strZipPath, string strDeCompressionPath, string strPassword) { try { if (string.IsNullOrEmpty(strZipPath) || !File.Exists(strZipPath)) { return false; } ZipInputStream inputStream = new ZipInputStream(File.OpenRead(strZipPath)); if (!string.IsNullOrEmpty(strPassword)) { inputStream.Password = strPassword; } ZipEntry zipEntry = null; while ((zipEntry = inputStream.GetNextEntry()) != null) { if (!string.IsNullOrEmpty(zipEntry.Name)) { string strFileName = Path.Combine(strDeCompressionPath, zipEntry.Name); strFileName = strFileName.Replace('/', '\\'); if (strFileName.EndsWith("\\")) { Directory.CreateDirectory(strFileName); } else { FileStream fileStream = null; int intSize = 2048; byte[] btsData = new byte[intSize]; while (true) { intSize = inputStream.Read(btsData, 0, btsData.Length); if (fileStream == null) { fileStream = File.Create(strFileName); } if (intSize > 0) { fileStream.Write(btsData, 0, btsData.Length); } else { break; } } if (fileStream != null) { fileStream.Close(); fileStream.Dispose(); } } } } if (zipEntry != null) { zipEntry = null; } if (inputStream != null) { inputStream.Close(); inputStream.Dispose(); } GC.Collect(); GC.Collect(1); return true; } catch (Exception ex) { TXTHelper.Logs(ex.ToString()); return false; } }
|