Searched refs:destination_folder (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/build/ |
H A D | prebuilts_config.py | 208 def extract_compress_files(source_file, destination_folder): argument 209 if not os.path.exists(destination_folder): 210 os.makedirs(destination_folder, exist_ok=True) 212 command = ['unzip', '-qq', '-o', '-d', destination_folder, source_file] 214 command = ['tar', '-xzf', source_file, '-C', destination_folder] 216 command = ['tar', '-xJf', source_file, '-C', destination_folder]
|