Python 내에서 mkdir -p 기능 복제
Unix 계열 시스템의 mkdir -p 명령은 디렉토리와 해당 상위 경로를 원활하게 생성합니다. 아직 존재하지 않는 경우. 유사한 기능을 제공하는 기본 Python 솔루션이 있습니까?
해결책:
다행히도 다양한 Python 버전이 이 작업에 대한 솔루션을 제공합니다.
Python 3.5 이상:
Python 3.5에서는 parent=True 및exist_ok=True 인수를 사용하여 pathlib.Path.mkdir을 도입했습니다.
<code class="python">import pathlib pathlib.Path("/tmp/path/to/desired/directory").mkdir(parents=True, exist_ok=True)</code>
Python의 경우 3.2 이상:
os.makedirs는 Exist_ok 인수를 제공합니다. 이 인수를 True로 설정하면 mkdir -p 기능이 활성화됩니다.
<code class="python">import os os.makedirs("/tmp/path/to/desired/directory", exist_ok=True)</code>
이전 Python의 경우 버전:
3.2 이전 Python 버전의 경우 os.makedirs를 사용하고 기존 디렉터리와 관련된 오류를 무시할 수 있습니다.
<code class="python">import errno import os def mkdir_p(path): try: os.makedirs(path) except OSError as exc: # Python ≥ 2.5 if exc.errno == errno.EEXIST and os.path.isdir(path): pass # Handle other errors here or raise a generic exception.</code>
위 내용은 Python에서 \'mkdir -p\' 기능을 어떻게 복제할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!