zetavg
better way to manage JS and CSS
fdddf65 unverified
raw
history blame contribute delete
No virus
271 Bytes
import os
def relative_read_file(base_file, relative_path):
src_dir = os.path.dirname(os.path.abspath(base_file))
file_path = os.path.join(src_dir, relative_path)
with open(file_path, 'r') as f:
file_contents = f.read()
return file_contents