“Python Relative Path” Code-Antworten

Python Öffnen Sie die Datei im Vergleich zum Modul

import os

TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
Good Goshawk

Python Relative Path

import os
dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'relative/path/to/file/you/want')
Thoughtless Tapir

relativer Weg Python

import sys,os
sys.path.append(os.path.realpath('..'))
Clear Cockroach

Ähnliche Antworten wie “Python Relative Path”

Fragen ähnlich wie “Python Relative Path”

Weitere verwandte Antworten zu “Python Relative Path” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen