I have the following hierarchy
> Project
> App1
> folder1
> main.py
> App2
> folder1
> folder2
> file.txt
I want to open file.txt from main.py but by default the function "open ()" looks in the directory of the file and its subdirectories. How would I be able to read file.txt from main.py without having to move files?