How does mkdir -p work in Python?
Answers
Answered by
0
Python's standard os.mkdir works much like the underlying mkdir system call (i.e., in a pretty spare and rigorous way). For example, it raises an exception when the directory you're trying to make already exists.
Similar questions