본문 바로가기
python

파이썬 홈 디렉토리 경로 확장 법 os.path.expanduser

by 와우지니 2023. 5. 9.
반응형

os.path.expanduser 사용법

 

틸드(~) 기호를 사용하여 홈 디렉토리 경로로 확장합니다

import os

# 반드시 ~ 표 들어가야 expanduser 기능 사용 가능
path = "~/test.json"
expanded_path = os.path.expanduser(path)
print(expanded_path)
# out : /Users/{user}/test.json

 

[참고] 절대 경로 추출법 2 os.getcwd()

import os

# 현재 경로 도출
current_directory = os.getcwd()
file_path = os.path.join(current_directory, 'test.json')
print(file_path)
# out : /Users/{user}/test.json

 

반응형

'python' 카테고리의 다른 글

파이썬 리스트를 tsv 로 저장  (0) 2023.05.10
파이썬 assert 사용법  (0) 2023.05.10
파이썬 처음 문자 확인  (1) 2023.05.09
파이썬 마지막 문자 확인  (1) 2023.05.09
파이토치 clamp 최소값, 최대값 고정  (0) 2023.05.09

댓글