-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhelpers.py
65 lines (52 loc) · 1.85 KB
/
helpers.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
62
63
64
65
""" Helper functions for scripts """
import json
import logging
import os
import shutil
logger = logging.getLogger(__name__)
def read_json_from_file(file_path):
""" Wrapper helper to read json from file """
return json.loads("\n".join(read_content_from_file(file_path)))
def read_content_from_file(file_path):
""" Wrapper helper to get content from file """
content = []
with open(file_path, mode="r", encoding='utf-8') as read_file:
all_lines = read_file.readlines()
for each_line in all_lines:
content.append(each_line.strip())
return content
def write_content_to_file(file_path, content_lines):
""" Wrapper helper to write lines to file """
with open(file_path, mode='w', encoding='utf-8') as out_file:
for each_line in content_lines:
out_file.write(each_line + "\n")
def ensure_folder_exists(folder_path):
""" Ensure folder path exists """
if not os.path.exists(folder_path):
os.mkdir(folder_path)
def ensure_file_exists(file_path):
"""
Ensure file path exists
Sideeffect: creates empty file
"""
if not os.path.exists(file_path):
with open(
file_path,
mode='w',
encoding='utf-8'
) as file_handle:
file_handle.write("")
def remove_directory_with_contents(folder_path):
""" Remove the folder along with its contents """
if os.path.isdir(folder_path):
logger.debug("Deleting %s", folder_path)
try:
shutil.rmtree(folder_path)
except Exception as exception:
# shutil.rmtree() sometimes throws an error on windows,
# so we only logging the error and not raising it
logger.exception(
"Got Error while deleting the path %s. Error: %s",
folder_path,
exception
)