WeChatMsg/app/util/path.py

12 lines
267 B
Python
Raw Normal View History

2023-11-20 23:08:10 +08:00
import os
from app.person import MePC
def get_abs_path(path):
return os.path.join(os.getcwd(), 'app/data/icons/404.png')
if path:
return os.path.join(MePC().wx_dir, path)
else:
return os.path.join(os.getcwd(), 'app/data/icons/404.png')