Answers for "how to open file in python with absolute path"

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

Code answers related to "how to open file in python with absolute path"

Python Answers by Framework

Browse Popular Code Answers by Language