-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomatic_Backup.py
More file actions
79 lines (64 loc) · 2.3 KB
/
Copy pathAutomatic_Backup.py
File metadata and controls
79 lines (64 loc) · 2.3 KB
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
import argparse
import gzip
import os
import shutil
import sys
import threading
def parse_input():
parser = argparse.ArgumentParser()
parser.add_argument('-t','--target',nargs=1,required=True,help='Target Backup folder')
parser.add_argument('-s','--source',nargs='+',required=True,help='Source File to be added')
parser.add_argument('-c','--compress',nargs=1,type=int,help='Gzip threshold in bytes,Deafult 1024KB',default=[102400])
if len(sys.argv) == 1:
parser.print_help()
sys.exit()
return parser.parser_args()
def size_if_newer(source,target):
src_stat = os.stat(source)
try:
target_ts = os.stat(target).st_mtime
except FileNotFoundError:
try:
target_ts = os.stat(target + '.gz').st_mtime
except FileNotFoundError:
target_ts = 0
return src_stat.st_size if(src_stat.st_mtime - target_ts > 1) else False
def threaded_sync_file(source,target,compress):
size = size_file_newer(source,target)
if size:
thread = threading.Thread(target=transfer_file,args=(source,target,size > compress))
thread.start()
return thread
def sync_file(source,target,compress):
size = size_if_newer(source,target)
if size:
transfer_file(source,target, size > compress)
def transfer_file(source,target,compress):
try:
if compress:
with gzip.open(target + '.gz','wb') as target_fid:
with open(source,'rb') as source_fid:
target_fid.writelines(source_fid)
print('Compress {}'.format(source))
else:
shutil.copy2(source,target)
print('Copy {}'.format(source))
except FileNotFoundError:
os.makedirs(os.path.dirname(target))
transfer_file(source,target,compress)
def sync_root(root,arg):
target = arg.target[0]
compress = arg.compress[0]
threads = []
for path,_,file in os.walk(root):
for source in files:
source = path + '/' + source
threads.append(thread_sync_file(source,target + source,compress))
for thread in threads:
thread.join()
if __name__ == '__main__':
arg = parse_input()
print('---------------Start Copy-----------------')
for root in arg.source:
sync_root(root,arg)
print('--------Done------')