Answers for "relative path of file in python"

1

python open file relative to script location

import os

path = 'a/relative/file/path/to/this/script/file.txt'

with open(os.path.join(os.path.dirname(__file__), path), 'r') as input_file:
    content = input_file.read()
Posted by: Guest on August-31-2020
1

relative path python

import sys,os
sys.path.append(os.path.realpath('..'))
Posted by: Guest on February-09-2021

Code answers related to "relative path of file in python"

Python Answers by Framework

Browse Popular Code Answers by Language