Message9584

Author nazarlviv07
Recipients jeff.allen, nazarlviv07, santa4nt, saynt, zyasoft
Date 2015-03-04.08:38:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425458319.14.0.514555391602.issue2120@psf.upfronthosting.co.za>
In-reply-to
Content
Issue #2277 was closed due to duplicate of this issue.
But when I try the simpler case of os.mkdir to see if this is the case I received error (OSError: [Errno 17] File exists). 
So in my case of os.mkdir and os.makedirs we have the same error OSError: [Errno 17] File exists.
Logs are below:
================================================
1)In case os.mkdir
os.mkdir(dirname)
    os.mkdir(dirname)
OSError: [Errno 17] File exists: '\\\\1.9.83-20150203083249\\docs\\doctrees\\subfolder'
2)In case os.makedirs
os.makedirs(dirname)
  File "\\1.9.83-20150203085148\lib\jython-standalone-2.7-b4.jar\Lib\os.py", line 172, in makedirs
    mkdir(name, mode)
OSError: [Errno 17] File exists: '\\\\1.9.83-20150203085148\\docs\\doctrees\\subfolder'
============================================================
In both cases folder "subfolder" is not exist before and after execution the program.

Probably issue #2120 and #2277 is not the same.
Correct me if I am wrong.
History
Date User Action Args
2015-03-04 08:38:39nazarlviv07setmessageid: <1425458319.14.0.514555391602.issue2120@psf.upfronthosting.co.za>
2015-03-04 08:38:39nazarlviv07setrecipients: + nazarlviv07, zyasoft, jeff.allen, santa4nt, saynt
2015-03-04 08:38:39nazarlviv07linkissue2120 messages
2015-03-04 08:38:38nazarlviv07create