実行ファイルのパスは__file__
で取得できるので、os.path.dirname
を使ってディレクトリにし、
os.path.join
を使って欲しいファイルへのパスをつなげるとOK.
.
└── some_dir
├── products.json
└── test.py
test.py
import os
dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'products.json')
with open(filename) as f:
print(f.read())