2019-09-03から1日間の記事一覧
■ はじめに Python の ファイル圧縮/解凍について、まとめる ■ tar 形式 公式サイト https://docs.python.org/ja/3/library/tarfile.html サンプル import tarfile def main(): input_path = 'C:\\work\\hello' output_path = 'C:\\work\\output.tar.gz' # …
■ はじめに Python の ファイル圧縮/解凍について、まとめる ■ tar 形式 公式サイト https://docs.python.org/ja/3/library/tarfile.html サンプル import tarfile def main(): input_path = 'C:\\work\\hello' output_path = 'C:\\work\\output.tar.gz' # …