-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.py
145 lines (137 loc) · 5.53 KB
/
backup.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
from datetime import datetime
from distutils.dir_util import copy_tree, remove_tree
from distutils.file_util import copy_file
import os
import sys
import time
from tqdm import tqdm
import math
# Paths of things you want to backup
backup_dir = [
r"C:\Users\"",
]
def get_unit(size_bytes):
if size_bytes == 0:
return "0 B"
size_name = ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB")
i = int(math.floor(math.log(size_bytes, 1024)))
p = math.pow(1024, i)
s = round(size_bytes / p, 2)
return "%s %s" % (s, size_name[i])
def backup():
combined_size = 0
for i in backup_dir:
i = i.replace('"', '')
size = 0
if os.path.exists(i):
if os.path.isdir(i):
for ele in os.scandir(i):
size += os.path.getsize(ele)
elif os.path.isfile(i):
size += os.path.getsize(i)
combined_size = combined_size + size
else:
sys.stdout.write("\033[1;31m")
print("Folder does not exist and wont be included in the backup: " + i)
sys.stdout.write("\033[0;0m")
sys.stdout.write("\033[1;30m")
print(" * Combined size is: ", str(combined_size),
"bytes", " Or: ", get_unit(combined_size))
sys.stdout.write("\033[0;0m")
choice = input(" | Do you want to continue? (y/n): ")
if choice == "y":
sys.stdout.write("\033[1;30m")
print(" * Starting backup...")
sys.stdout.write("\033[0;0m")
inputpath = input(" | Enter the path of the backup folder: ")
if not os.path.exists(inputpath):
sys.stdout.write("\033[1;31m")
print(" ! Path does not exist")
sys.stdout.write("\033[0;0m")
else:
sys.stdout.write("\033[1;30m")
print(" * Creating backup folder...")
sys.stdout.write("\033[0;0m")
inputpath = inputpath + "/Backup-" + \
str(datetime.now().strftime("%Y-%m-%d"))
if os.path.exists(inputpath):
sys.stdout.write("\033[1;31m")
print(" ! '/Backup-" + str(datetime.now().strftime("%Y-%m-%d")
) + "' Backup folder already exists")
sys.stdout.write("\033[0;0m")
choice = input(
" | Do you want it to be erased? and replaced with a new one? (y/n): ")
if choice == "y" or not os.path.exists(inputpath):
timeStart = time.perf_counter()
if os.path.exists(inputpath):
remove_tree(inputpath)
os.mkdir(inputpath)
sys.stdout.write("\033[1;30m")
print(" * Copying files...")
sys.stdout.write("\033[0;0m")
progressBar = tqdm(backup_dir)
for i in progressBar:
i = i.replace('"', '')
if os.path.exists(i) and os.path.isdir(i):
progressBar.set_description(" Copying: " + str(i))
copy_tree(i, inputpath + i[2:])
elif os.path.exists(i) and os.path.isfile(i):
progressBar.set_description(" Copying: " + str(i))
copy_file(i, inputpath + i[2:])
timeEnd = time.perf_counter()
sys.stdout.write("\033[0;32m")
print(
f" ! Backup completed in: {timeEnd - timeStart:0.4f} seconds")
else:
sys.stdout.write("\033[1;31m")
print(" ! Backup aborted!")
else:
sys.stdout.write("\033[1;31m")
print(" ! Backup aborted!")
# - Main -
sys.stdout.write("\033[1;36m")
print("# Backup System - By Arisamiga")
sys.stdout.write("\033[0;0m")
choice = input("1: Backup, 2: Check Paths, 3: Exit: ")
if choice != "1" and choice != "2" and choice != "3":
sys.stdout.write("\033[1;31m")
print(" | Invalid choice!")
else:
if choice == "1":
backup()
elif choice == "2":
combined_size = 0
files = 0
path_exists = 0
for i in backup_dir:
i = i.replace('"', '')
size = 0
if os.path.exists(i):
path_exists += 1
if os.path.isdir(i):
for root, dirs, files_list in os.walk(i):
for file in files_list:
size += os.path.getsize(os.path.join(root, file))
files += 1
else:
size += os.path.getsize(i)
files += 1
combined_size = combined_size + size
sys.stdout.write("\033[0;32m")
print(f"Checking: {i} | " + str(size) + " bytes", " Or: ", get_unit(size),
" Exists: " + str(os.path.exists(i)))
sys.stdout.write("\033[0;0m")
else:
sys.stdout.write("\033[1;31m")
print(f"Checking: {i} | " + str(size) + " bytes", " Or: ", get_unit(size),
" Exists: " + str(os.path.exists(i)))
sys.stdout.write("\033[0;0m")
print("------------------------")
sys.stdout.write("\033[1;36m")
print("* Backup Information")
print(" | Combined size is: ", str(combined_size), "bytes", "\n | Or: ", get_unit(
combined_size), "\n | Files: " + str(files) + "\n | Paths: " + str(len(backup_dir)) +
"\n | Paths Exist: " + str(path_exists) + "/" + str(len(backup_dir)))
elif choice == "3":
print("Exited..")
exit()