forked from s17472/VRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.py
56 lines (44 loc) · 1 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
import os
import shutil
def create_dir(dir: str):
"""
Create dir if not exist
Args:
dir: path to the directory
"""
if not os.path.exists(dir):
os.makedirs(dir)
def remove_dir(dir: str):
"""
Remove directory
Args:
dir: path to the directory
"""
shutil.rmtree(dir)
def del_file(file: str):
"""
Remove file
Args:
file: path to the file
"""
os.remove(file)
def status_message(i: int, n: int, mess: str):
"""
Prints status message
Args:
i: current progress
n: total number
mess: message to print
"""
print("{}/{} - {}".format(i, n, mess))
def refactor(file: str, extension: str) -> str:
"""
Change extension of the file
Args:
file: path to the file
extension: name of the extension to change
Returns:
path to file with changed extension
"""
ext_len = len(file.split('.')[-1])
return file[:-(ext_len + 1)] + ".{}".format(extension)