이 코드는 b.py에서 templates / blog1 / page.html을 얻습니다.
path = os.path.join(os.path.dirname(__file__), os.path.join('templates', 'blog1/page.html'))
하지만 부모 디렉토리 위치를 얻고 싶습니다.
aParent
|--a
| |---b.py
| |---templates
| |--------blog1
| |-------page.html
|--templates
|--------blog1
|-------page.html
부모의 위치를 얻는 방법
감사
업데이트 :
이것은 맞다 :
dirname=os.path.dirname
path = os.path.join(dirname(dirname(__file__)), os.path.join('templates', 'blog1/page.html'))
또는
path = os.path.abspath(os.path.join(os.path.dirname(__file__),".."))
os.path.join('templates', 'blog1/page.html')
나에게 이상해 보인다. 당신은 것들을 섞고 있습니다. 어느 os.path.join('templates', 'blog1', 'page.html')
나 'templates/blog1/page.html'
. 그리고 훨씬 더 쉽게는 것 os.path.abspath(os.path.join('templates', 'blog1', 'page.html'))
다음
blog1
나a
? 현재 파일은 어디에 있습니까?