Python pathlib make directories if they don’t exist
Yes, that is Path.mkdir: pathlib.Path(‘/tmp/sub1/sub2’).mkdir(parents=True, exist_ok=True) From the docs: If parents is true, any missing parents of this path are created as needed; they are created with the default permissions without taking mode into account (mimicking the POSIX mkdir -p command). If parents is false (the default), a missing parent raises FileNotFoundError. If exist_ok is … Read more