इस कोड को बीकॉम में टेम्प्लेट / ब्लॉग 1 / पेज.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
और aParent लोकेशन कैसे प्राप्त करें
धन्यवाद
अद्यतन:
यह सही है:
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
? और आपकी वर्तमान फ़ाइल कहाँ स्थित है?