รหัสนี้ได้รับ template / blog1 / page.html ใน b.py:
path = os.path.join(os.path.dirname(__file__), os.path.join('templates', 'blog1/page.html'))
แต่ฉันต้องการรับตำแหน่ง dir หลัก:
aParent
|--a
| |---b.py
| |---templates
| |--------blog1
| |-------page.html
|--templates
|--------blog1
|-------page.html
และวิธีรับตำแหน่งผู้ปกครอง
ขอบคุณ
updated:
ถูกต้องแล้ว:
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
? และไฟล์ปัจจุบันของคุณอยู่ที่ไหน?