질문 : 파이썬에서 절대 파일 경로를 얻는 방법 "mydir/myfile.txt" 와 같은 경로가 주어지면 Python에서 현재 작업 디렉토리에 상대적인 파일의 절대 경로를 어떻게 찾습니까? 예를 들어 Windows에서는 다음과 같이 끝날 수 있습니다. "C:/example/cwd/mydir/myfile.txt" 답변 >>> import os >>> os.path.abspath("mydir/myfile.txt") 'C:/example/cwd/mydir/myfile.txt' 이미 절대 경로 인 경우에도 작동합니다. >>> import os >>> os.path.abspath("C:/example/cwd/mydir/myfile.txt") 'C:/example/cwd/mydir/myfile.txt' 출처 : ..