Pythonのosモジュールでディレクトリ(フォルダ)を新規作成する方法をソースコード付きでまとめました。
ディレクトリの新規作成
Python3.2以降のos.makedirsメソッドでは、引数exist_ok=Trueを指定することでディレクトリの存在を確認せずディレクトリを作成できます。
サンプルコード(Python3)
サンプルプログラムのソースコードです。
# -*- coding:utf-8 -*- import os os.makedirs('test', exist_ok=True)
– | 関連記事 |
---|---|
1 | ■【UNIX入門】コマンド・サンプル集 |
2 | ■Python入門 基本文法 |
コメント