Home
last modified time | relevance | path

Searched refs:zip_file (Results 1 – 2 of 2) sorted by relevance

/tools/test/connectivity/acts/framework/acts/
Dutils.py982 with zipfile.ZipFile(zip_path, 'r') as zip_file:
983 for info in zip_file.infolist():
984 _extract_file(zip_file, info, extract_location)
987 def _extract_file(zip_file, zip_info, extract_location): argument
995 out_path = zip_file.extract(zip_info.filename, path=extract_location)
/tools/asuite/atest/
Datest_utils.py684 with zipfile.ZipFile(zip_path) as zip_file:
685 for filename in zip_file.namelist():
691 with zip_file.open(filename) as extract_file: