This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: shutil.copytree uses os.mkdir instead of os.mkdirs
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jlgijsbers Nosy List: brett.cannon, jlgijsbers
Priority: low Keywords:

Created on 2004-06-19 06:35 by brett.cannon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg21224 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2004-06-19 06:35
shutil.copytree uses os.mkdir instead of os.mkdirs for creating the 
new destination directory.  Any reason why it doesn't use 
os.mkdirs?  If there is the docs should be made more specific in 
stating that it will not create intermediate directories for the 
destination.
msg21225 - (view) Author: Johannes Gijsbers (jlgijsbers) * (Python triager) Date: 2005-01-08 12:33
Logged In: YES 
user_id=469548

Fixed by applying patch #1094015.
History
Date User Action Args
2022-04-11 14:56:04adminsetgithub: 40419
2004-06-19 06:35:48brett.cannoncreate