상대경로

    Path (경로)

    파일 시스템 내에서 특정 파일(혹은 디렉토리)의 위치를 나타내는 양식 Absolute Path (절대경로) 현 작업디렉토리(cwd)와 관계없이 절대적 위치 드라이브:\폴더\폴더\파일명 (windows) c:\Windows\System32\drivers\etc\hosts /home/dsaint31/.bachrc (linux) /디렉토리/디렉토리/파일명 (linux) /home/dsaint31/.bachrc (linux) Relative Path (상대경로) 현 작업디렉토리를 기준으로 상대적 위치를 가르킴. ..\drivers\etc\hosts Python의 path관련 참고사항 python인터프리터에서 실행되는 python 소스 파일의 absolute path를 확인하는 코드 import os print(..