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 |
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 |