■ expanduser 함수를 사용해 사용자 계정 디렉토리를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import os.path as path userDirectory = path.expanduser("~") print(userDirectory) # C:\Users\king |
■ expanduser 함수를 사용해 사용자 계정 디렉토리를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import os.path as path userDirectory = path.expanduser("~") print(userDirectory) # C:\Users\king |