ディレクトリを作成

def create_directory(path):
    if not os.path.exists(path):
        os.makedirs(path)

関数説明

指定したパスに新しいディレクトリを作成する。既に存在する場合は作成しない

引数説明

ディレクトリパス(文字列)

返り値説明

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