file directory

# 파일 디렉토리 다루기, [os 모듈] 의 변수와 함수들 import os print(os.getcwd()) # CWD : Current Wroking Directory (현재 작업 디렉토리/폴더) 출력 결과C:\dev\lab-python\lec07_file # 절대 경로 (absolute path)# 시스템의 루트(root)부터 전체 디렉토리 경로를 표시하는 방법# ex) C:\dev\lab-python\lec07_file (Windows - 백슬레시\ 사용) : 현재 디렉토리#.Users/user/Document (MacOS 또는 Linux 운영체제 : 슬레시/ 사용) # 상대 경로 (relative path):# 현재 작업 디렉토리(cwd)를 기준으로 경로를 표시하는 방법# .: 현재 디렉토리, ..
Codezoy
'file directory' 태그의 글 목록