File size: 181 Bytes
b8a6dde |
1 2 3 4 5 6 |
from pathlib import Path
def get_full_file_path(file_name: str) -> str:
script_dir = Path(__file__).resolve().parent
file_path = script_dir / file_name
return file_path |