Searched refs:output_path (Results 1 – 2 of 2) sorted by relevance
21 def gzip_uncompress(gz_path, output_path): argument22 if os.path.exists(output_path):26 with open(output_path, 'wb') as raw_out:29 os.remove(output_path)32 def lzma_uncompress(xz_path, output_path): argument33 if os.path.exists(output_path):37 with open(output_path, 'wb') as raw_out:40 os.remove(output_path)44 def zstd_uncompress(zstd_path, output_path): argument45 if os.path.exists(output_path):[all …]
29 def cpio_extract(archive, output_path): argument31 os.chdir(output_path)