Pythonでは、osモジュールのos.mkdir()関数を使用してディレクトリを作成することができます。
以下はその例です。
1 2 3 4 5 6 7 8 9 10 | import os directory_name = "new_directory" try: os.mkdir(directory_name) except OSError: print("Creation of the directory '%s' failed" % directory_name) else: print("Successfully created the directory '%s'" % directory_name) |
現在の作業ディレクトリに、与えられた名前(例では new_directory)を持つディレクトリを作成する。そのディレクトリがすでに存在する場合は、OSError が発生します。