Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/userp/pathexist.py

16 lines
349 B
Python
Raw Normal View History

2020-06-13 12:43:43 +00:00
import os
import re
def pathexist(ss):
ss = re.sub('_','',ss)
2020-06-13 15:00:27 +00:00
d = '/home/oasisakari/botassests/Favicon/' + ss + '/'
2020-06-13 12:43:43 +00:00
if not os.path.exists(d):
os.mkdir(d)
else:
pass
2020-06-13 15:00:27 +00:00
ddd = '/home/oasisakari/botassests/Favicon/' + ss + '/Wiki.png'
2020-06-13 12:43:43 +00:00
if not os.path.exists(ddd):
return False
else:
return True