python-cheatsheet
python-cheatsheet copied to clipboard
Add Recursive Directory Creation
os.makedirs
is a great way to create directories and sub directories recursively. Existing directories can also be ignored by setting the exist_ok
argument to True
.
Thanks, I will consider it.
I added it. Thanks a lot for the push.