-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.py
62 lines (51 loc) · 1.64 KB
/
tools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
import json
def check_dirs_or_file(path, isprint=True):
"""check files or dirs, create files and dirs if not exists"""
filename = os.path.basename(path)
if len(filename.split('.')) == 1:
if os.path.isdir(path):
if isprint:
print("{} already exists".format(path))
return True
else:
os.makedirs(path)
return True
elif len(filename.split('.')) == 2:
if os.path.isfile(path):
if isprint:
print("{} already exists".format(path))
return True
else:
return False
def iterable2txt(x, path):
f = open(path, 'w', encoding='utf-8')
f.write(str(x))
f.close()
print("write to {}".format(path))
def txt2iterable(path):
f = open(path, 'r', encoding='utf-8')
a = f.read()
iterable = eval(a)
f.close()
return iterable
def save_dict_to_json(item, path, overwrite=True):
if os.path.exists(path) and overwrite is False:
print("{} already exists".format(path))
else:
try:
item = json.dumps(item, indent=4)
with open(path, "w", encoding='utf-8') as f:
f.write(item)
print("success write dict to json: {}".format(path))
except Exception as e:
print("write error==>", e)
def read_dict_from_json(path):
try:
if os.path.exists(path):
with open(path, 'r', encoding='utf-8') as f:
data = json.load(f)
print("{} successfully loaded!".format(path))
return data
except Exception as e:
print("read error==>", e)