Answers for "create file in relative path python"

1

python open file relative to module

import os

TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
Posted by: Guest on May-15-2020
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 "create file in relative path python"

Python Answers by Framework

Browse Popular Code Answers by Language