How to create a multi folders with nested structure in python api in a simple way with out loops like unix command mkdir -p a/b/c/{d,e,f}
seems like pathlib
or os.mkdirs
has no direct provision for this.
Tried in this way pathlib.Path(dest).mkdir(0o755, parents=True, exist_ok=True)
but not working