New submission from Mikey D :
https://docs.python.org/2/library/os.html
os.mkdirs('/tmp/folder')
AttributeError: 'module' object has no attribute 'mkdirs''
os.makedirs('/tmp/folder')
os.path.isdir('/tmp/folder')
True
--
a
Mikey D added the comment:
Bah, I need more coffee... sorry! I though I saw "mkdirs" on that
page. Please close.
On Wed, Nov 8, 2017 at 8:03 AM, Serhiy Storchaka wrote:
>
> Serhiy Storchaka added the comment:
>
> Yes, os.mkdirs does not exist. What is your issue Mikey?
Mikey D added the comment:
Forgot to add, python 2.7.5
python-2.7.5-48.el7.x86_64 (RHEL 7.3)
On Wed, Nov 8, 2017 at 7:59 AM, Mikey D wrote:
>
> New submission from Mikey D :
>
> https://docs.python.org/2/library/os.html
>
> os.mkdirs('/tmp/folder')
> Attribu