파이썬 OS 모듈 - 경로 합치기, 디렉터리/파일 확인, 경로 존재 확인 os.join os.isdir os.exists
경로 합치기 os.path.join(path1, path2, ...) 경로와 경로를 합치며 Windows(\), Linux(/) 에 모두 호환되므로, 경로를 합칠 때는 join() 을 쓰는 것을 추천합니다. path = os.getcwd() print(path) for file in os.listdir(): print(file) dir_name = 'test_dir' path2 = os.path.join(path, dir_name) print(path2) 더보기 C:\Users\Desktop\Reference\Example\ex_os ex1.py ex2.py test_dir C:\Users\Desktop\Reference\Example\ex_os\test_dir 디렉터리 확인 os.path.isdir(p..