ディレクトリのコピーを作成

import shutil

def copy_directory(source_directory, target_directory):
    shutil.copytree(source_directory, target_directory)

関数説明

あるディレクトリの内容を新しい場所に再帰的にコピーする

引数説明

ソースディレクトリパス(文字列)、ターゲットディレクトリパス(文字列)

返り値説明

funky Feb. 8, 2024, 10:27 a.m.