WeChatMsg/app/util/path.py
2023-11-25 00:20:35 +08:00

22 lines
587 B
Python

import os
from app.person_pc import MePC
from app.util import dat2pic
if not os.path.exists('./data/'):
os.mkdir('./data/')
if not os.path.exists('./data/image'):
os.mkdir('./data/image')
def get_abs_path(path):
# return os.path.join(os.getcwd(), 'app/data/icons/404.png')
if path:
# if os.path.exists(os.path.join())
# print(path, os.path.join(MePC().wx_dir, path), MePC().wx_dir)
output_path = dat2pic.decode_dat(os.path.join(MePC().wx_dir, path), './data/image')
return output_path
else:
return ':/icons/icons/404.png'