Nếu là asp.net thì bạn là m như sau:
Ở đây chúng ta dùng component do hãng thứ 3 cung cấp nó hoà n toà n free. Äầu
tiên bạn download file: ICSharpCode.SharpZipLib.dll. Cái nà y search trên mạng
download vỠnha. Vì cái nà y là m biếng upload file lên wá nếu ai kiếm không ra
file nà y thì liên hệ với mình mình send cho.
Sau đó tạo 1 lớp unzip: và past đoạn code sau và o:
public void UnZipFiles(string zipPathAndFile, string outputFolder, string
password, bool deleteZipFile)
{
ZipInputStream s = new ZipInputStream(File.OpenRead(zipPathAndFile));
if (password != null && password != String.Empty)
s.Password = password;
ZipEntry theEntry;
string tmpEntry = String.Empty;
while ((theEntry = s.GetNextEntry()) != null)
{
string directoryName = outputFolder;
string fileName = Path.GetFileName(theEntry.Name);
// create directory
if (directoryName != "")
{
Directory.CreateDirectory(directoryName);
}
if (fileName != String.Empty)
{
if (theEntry.Name.IndexOf(".ini") < 0)
{
string fullPath = directoryName + "\" + theEntry.Name;
fullPath = fullPath.Replace("\ ", "\");
string fullDirPath = Path.GetDirectoryName(fullPath);
if (!Directory.Exists(fullDirPath)) Directory.CreateDirectory(fullDirPath);
FileStream streamWriter = File.Create(fullPath);
int size = 2048;
byte[] data = new byte[2048];
while (true)
{
size = s.Read(data, 0, data.Length);
if (size > 0)
{
streamWriter.Write(data, 0, size);
}
else
{
break;
}
}
streamWriter.Close();
}
}
}
s.Close();
if (deleteZipFile)
File.Delete(zipPathAndFile);
}
private static ArrayList GenerateFileList(string Dir)
{
ArrayList fils = new ArrayList();
bool Empty = true;
foreach (string file in Directory.GetFiles(Dir))
{
fils.Add(file);
Empty = false;
}
if (Empty)
{
if (Directory.GetDirectories(Dir).Length == 0)
{
fils.Add(Dir + @"/");
}
}
foreach (string dirs in Directory.GetDirectories(Dir))
{
foreach (object obj in GenerateFileList(dirs))
{
fils.Add(obj);
}
}
return fils;
}
vá»›i zipPathAndFile là file muốn giải nén >>> Cái nà y fải trỠđầy đủ dÆ°á»ng
dẫn nha và dụ : path=Server.Mapth("/") >> Äây là thÆ° mục gốc. outputFolder lÃ
đương dẫn muốn giải nén ra . Nếu đặt ở thư mục gốc thì outputFolder=path;
password file nén, và muốn xoá file zip cũ hay không thì xoá là true và không
xoá là false.
Còn muốn hà m Zip thì bạn cũng là m tương tự. Ngoà i ra tthư viện nà y còn hổ
trợ file zip của linux luộn nha. File đuôi là tag đó...
Vì nhiá»u hà m dà i wá nên không post thêm nếu ai muốn mã nguồn thì liên hệ
yahoo: (e-mail address removed), gmail : (e-mail address removed) .
Váºy là xong rùi