3 lines
96 B
Python
3 lines
96 B
Python
from pathlib import Path
|
|
app_dir = Path(__file__).resolve().parent
|
|
print(app_dir, type(app_dir)) |