OSに関連する処理を行うモジュール
os.path.exists()
『True』か『False』で返す
os.path.isdir()
『True』か『False』で返す
os.path.isfile()
『True』か『False』で返す
os.path.dirname()
os.path.basename()
os.path.split()
os.path.join()
os.path.getsize()
os.getcwd()
os.mkdir()
os.makedirs()
os.chdir()
os.listdir()
os.rename(“ファイル名”, “新しいファイル名”)
os.remove()
os.rmdir()
os.system()