pathlib를 이용한 디렉토리 생성

Pear_Mh·2022년 8월 3일
0

데이터 전처리하면서 수동으로 하나하나 디렉토리 만들기가 너무 힘들어서 만들었습니다.

from pathlib import Path

file = 'not_exist_directory_path'

Path(file).mkdir(parents=True, exist_ok=True)

추가적으로, 확장자를 제외한 파일명을 출력하는 코드는 다음과 같습니다.

from pathlib import Path

file_path = "Desktop/folder/myfile.txt"
file_name = Path(file_path).stem
print(file_name)
profile
Beyond the new era.

0개의 댓글