zip檔案目錄解壓

2021-06-16 08:56:41 字數 1062 閱讀 6925

解壓zip檔案與刪除檔案目錄

/**

* 解壓zip檔案

* @param fis zip檔案流

* @param unzipdirectory 解壓後存放目錄的路徑

* @return 是否解壓成功

* @see [類、類#方法、類#成員]

*/public static boolean unzip(inputstream fis, string unzipdirectory)

string tmp = unzipdirectory;

for (string dirfile : filetemp)}}

else

fos.flush();

fos.close();}}

}catch (exception e)

finally

if (zis != null)

}catch (exception e)

}return true;

}/**

* 刪除目錄下的所有檔案和目錄

* @param filepath

* @return 刪除是否成功

* @see [類、類#方法、類#成員]

*/public static boolean deleteallfiles(string filepath)

}return true;

}/**

* 刪除檔案

* @param filename 檔名

* @return 刪除檔案是否成功

* @see [類、類#方法、類#成員]

*/private static boolean deletefile(string filename)

if (file.isdirectory())

else

system.out.println("deletefile.filename=" + filename);

file.delete();

return iscomplete;

}

Qt QuaZip 解壓zip檔案

運用相對還是比較簡單的示例如下,比較簡單,即在當前目錄解壓zip檔案,一般都能看懂 quazip archive zip if archive.open quazip mdunzip qdir dir giftdir for bool f archive.gotofirstfile f f arch...

python 解壓zip檔案

import os import zipfile import time defunzipfile file dir,file name,filelist param file dir 絕對路徑 param file name 解壓檔名 param filelist 返回解壓後的所有檔名 retur...

java解壓zip檔案

解壓檔案 param zipfile 目標檔案 param descdir 指定解壓目錄 return public static boolean unzip file zipfile,string descdir zipfile zip null try 判斷檔案全路徑是否為資料夾,如果是上面已經...