解壓縮檔案

2022-02-26 10:34:11 字數 827 閱讀 5182

public static fastzip fz = new fastzip();

///

/// 壓縮檔案

///

/// 壓縮檔案的路徑與名稱

/// 被壓縮的檔案路徑

/// 解壓密碼(null代表無密碼)

///

public static string filetozip(string zipfilepath, string filepath, string zippwd)

catch(exception ex)

return state;

}///

/// 壓縮資料夾

///

/// 被壓縮的資料夾路徑

/// 壓縮資料夾的路徑與名稱

/// 解壓密碼(null代表無密碼)

///

public static string dirtozip(string dirpath, string zippath, string zippwd)

catch (exception ex)

return state;

}///

/// 解壓zip

///

/// 解壓後存放路徑

/// zip的存放路徑

/// 解壓密碼(null代表無密碼)

///

public static string compress(string dirpath, string zippath, string zippwd)

catch (exception ex)

return state;

}

解壓縮檔案

using system using system.collections.generic using system.linq using system.text using system.threading.tasks using system.io namespace commonhelper ...

php壓縮解壓縮檔案

注 需要安裝zip擴充套件 壓縮單個檔案 method zip file param string filename 檔名 return boolean true false function zip file string filename zip new ziparchive zipname b...

linux解壓縮檔案

gz 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 解壓 tar zxvf filename.tar.gz 壓縮 tar zcvf filename.tar.gz dirname bz2 解壓1 bzip2...