파이썬 현재 폴더 경로 (1) 썸네일형 리스트형 [Python] 현재 파일/디렉토리 위치 확인 및 변경 1.현재 파일의 이름 & 경로import os#현재 파일 이름print(__file__)#현재 파일 실제 경로print(os.path.realpath(__file__))#현재 파일 절대 경로print(os.path.abspath(__file__))2.현재 파일의 디렉토리 경로import os#현재 폴더 경로; 작업 폴더 기준print(os.getcwd())#현재 파일의 폴더 경로; 작업 파일 기준print(os.path.dirname(os.path.realpath(__file__)))3.현재 디렉토리의 파일 리스트import osprint(os.listdir(os.getcwd()))4.작업 디렉토리 변경import osos.chdir("/home/dada/test/") https://archive... 이전 1 다음