0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TypeError: makedirs() got an unexpected keyword argument 'exist_ok'

Posted at
# coding: utf-8

# -*- coding: utf-8 -*-


import os
os.makedirs('test1',exist_ok=True)

フォルダの作成を上記のコードで実行すると
makedirs() got an unexpected keyword argument 'exist_ok'
というエラーが出た(Python2.7)

os.mkdirじゃないから'exist_ok'に対応してるはず

なんでだ

原因分かる人よろしければ教えてください

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?