summaryrefslogtreecommitdiff
path: root/src/utils/paths_util_worklogger.py
blob: b2b6ee8a7b186b6ac39729fbba619da0b681095b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/opt/homebrew/bin/python3
"""
FILEPATHS FILE FOR WORKLOGGER
author: Wacky404 <wacky404@dev.com>
"""

from pathlib import Path
import os.path as osp
import os
import sys


os_home = osp.expanduser("~")
cwd = os.getcwd()
path_to_doc = osp.join(os_home, str('Documents'))
output_dir = osp.join(path_to_doc, str('workloggerOutput'))
log_dir = osp.join(cwd, str('logs'))