파이썬 OS 모듈 - 경로 분리, 확장자 분리 os.split os.splitext
해당 경로의 디렉터리 경로 os.path.dirname(path) 해당 경로의 디렉터리 경로를 구합니다. print('dir') dir_path = os.getcwd() print(dir_path) dir_name = os.path.dirname(dir_path) print(dir_name) print('file') file_path = os.path.abspath(__file__) print(file_path) dir_name = os.path.dirname(file_path) print(dir_name) 더보기 dir C:\Users\Desktop\Reference\Example\ex_os C:\Users\Desktop\Reference\Example file c:\Users\Desktop\Refer..