mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-05 20:08:01 +08:00
优化聊天记录文件的存储结构 #81
This commit is contained in:
parent
153f60769f
commit
eed226b04c
File diff suppressed because one or more lines are too long
@ -7,16 +7,26 @@ from app.util import dat2pic
|
|||||||
os.makedirs('./data/image', exist_ok=True)
|
os.makedirs('./data/image', exist_ok=True)
|
||||||
|
|
||||||
|
|
||||||
def get_abs_path(path):
|
def get_abs_path(path, base_path="/data/image"):
|
||||||
# return os.path.join(os.getcwd(), 'app/data/icons/404.png')
|
# return os.path.join(os.getcwd(), 'app/data/icons/404.png')
|
||||||
if path:
|
if path:
|
||||||
base_path = os.getcwd() + "/data/image"
|
base_path = os.getcwd() + base_path
|
||||||
output_path = dat2pic.decode_dat(os.path.join(MePC().wx_dir, path), base_path) # './data/image')
|
output_path = dat2pic.decode_dat(os.path.join(MePC().wx_dir, path), base_path)
|
||||||
return output_path if output_path else ':/icons/icons/404.png'
|
return output_path if output_path else ':/icons/icons/404.png'
|
||||||
else:
|
else:
|
||||||
return ':/icons/icons/404.png'
|
return ':/icons/icons/404.png'
|
||||||
|
|
||||||
|
|
||||||
|
def get_relative_path(path, base_path):
|
||||||
|
if path:
|
||||||
|
base_path = os.getcwd() + base_path
|
||||||
|
output_path = dat2pic.decode_dat(os.path.join(MePC().wx_dir, path), base_path)
|
||||||
|
relative_path = './image/'+os.path.basename(output_path) if output_path else 'https://www.bing.com/images/search?view=detailV2&ccid=Zww6woP3&id=CCC91337C740656E800E51247E928ACD3052FECF&thid=OIP.Zww6woP3Em49TdSG_lnggAHaEK&mediaurl=https%3a%2f%2fmeekcitizen.files.wordpress.com%2f2018%2f09%2f404.jpg%3fw%3d656&exph=360&expw=640&q=404&simid=608040792714530493&FORM=IRPRST&ck=151E7337A86F1B9C5C5DB08B15B90809&selectedIndex=21&itb=0'
|
||||||
|
return relative_path
|
||||||
|
else:
|
||||||
|
return ':/icons/icons/404.png'
|
||||||
|
|
||||||
|
|
||||||
def mkdir(path):
|
def mkdir(path):
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
os.mkdir(path)
|
os.mkdir(path)
|
||||||
@ -44,4 +54,3 @@ def wx_path():
|
|||||||
return wx_location
|
return wx_location
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
return '.'
|
return '.'
|
||||||
|
|
||||||
|
@ -294,7 +294,8 @@ python main.py
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
> 声明:该项目有且仅有一个目的:“留痕”——我的数据我做主,前提是“我的数据”其次才是“我做主”,禁止任何人以任何形式将其用于任何非法用途,对于使用该程序所造成的任何后果,所有创作者不承担任何责任🙄
|
> 声明:该项目有且仅有一个目的:“留痕”——我的数据我做主,前提是“我的数据”其次才是“我做主”,禁止任何人以任何形式将其用于任何非法用途,对于使用该程序所造成的任何后果,所有创作者不承担任何责任🙄<br>
|
||||||
|
> 该软件不会对您使用的微信造成任何影响,更不会对他人的微信造成任何影响,任何企图篡改微信聊天数据的想法都是无稽之谈。本项目所有功能均建立在”前言“的基础之上,基于该项目的所有开发者均不能接受任何有悖于”前言“的功能需求,违者后果自负。
|
||||||
|
|
||||||
[](https://star-history.com/?utm_source=bestxtools.com#LC044/WeChatMsg&Date)
|
[](https://star-history.com/?utm_source=bestxtools.com#LC044/WeChatMsg&Date)
|
||||||
|
|
||||||
|
@ -12,3 +12,4 @@ requests
|
|||||||
flask==3.0.0
|
flask==3.0.0
|
||||||
pyecharts==2.0.1
|
pyecharts==2.0.1
|
||||||
jieba==0.42.1
|
jieba==0.42.1
|
||||||
|
protobuf==4.25.1
|
||||||
|
Loading…
Reference in New Issue
Block a user