New submission from Chandrajyoti:

Problem:
os.mkdir is not working for multiple level of directory creation in windows 
environment.

Explanation:
Suppose there is a directory whose path is "D:\Output"

Now to create 2 levels of directory in side the path "D:\Output", when 
os.mkdir("D:\Output\Dir1\Dir2") is used, python 2.7 throws errors as below:
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
WindowsError: [Error 3] The system cannot find the path specified: 
'D:\\Output\\Dir1\\Dir2'

Please update python to create multiple level of directory.

----------
components: Library (Lib)
messages: 269062
nosy: ChandrajyotiDas
priority: normal
severity: normal
status: open
title: os.mkdir is not working for multiple level of directory creation in 
windows environment
type: enhancement
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue27368>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to