■ Path 클래스를 사용해 디렉토리 경로를 결합하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
import pathlib posixPath1 = pathlib.Path("program") / "test" / "code" / "program.py" print(posixPath1) # program/test/code/program.py posixPath2 = pathlib.Path("program/test/code/program.py") print(posixPath2) # program/test/code/program.py |