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.py980 with zipfile.ZipFile(zip_path, 'r') as zip_file:
981 for info in zip_file.infolist():
982 _extract_file(zip_file, info, extract_location)
985 def _extract_file(zip_file, zip_info, extract_location): argument
993 out_path = zip_file.extract(zip_info.filename, path=extract_location)
/tools/asuite/atest/
Datest_utils.py862 with zipfile.ZipFile(zip_path) as zip_file:
863 for filename in zip_file.namelist():
869 with zip_file.open(filename) as extract_file: