-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.py
38 lines (31 loc) · 921 Bytes
/
utils.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
import os
import sys
import shutil
import pathlib
def delete_folder(pth):
pth = pathlib.Path(pth)
for sub in pth.iterdir() :
if sub.is_dir() :
delete_folder(sub)
else :
sub.unlink()
pth.rmdir()
def delete_shutil(path):
shutil.rmtree(path)
def recreate_dir(path, display_warning=True):
if os.path.exists(path):
delete_shutil(path)
os.makedirs(path)
if display_warning:
print("=> Directory {} created.".format(path))
def check_n_create_dir(path, display_warning=True):
if not os.path.isdir(path):
pathlib.Path(path).mkdir(parents=True, exist_ok=True)
elif display_warning:
print("=> Directory {} exists (no new directory created).".format(path))
def str2bool(string):
return string.lower() == 'true'
def str2list(string):
if not string:
return []
return [x for x in string.split(",")]