-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdiffdirs.py
More file actions
executable file
·84 lines (69 loc) · 2.5 KB
/
diffdirs.py
File metadata and controls
executable file
·84 lines (69 loc) · 2.5 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
80
81
82
83
84
#!/usr/bin/env python
#
# diffdirs.py - find files that are missing between directories. This is for
# verifying backups. Note that it's directional, we only
# care about files in <sourcedir> that's not in <targetdir>.
#
# Copyright (C) 2015 Michael Davies <michael@the-davies.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#
from find_content import find_files
import find_content
import os
import sys
debug = False
def print_usage():
progname = os.path.basename(__file__)
print "%s <sourcedir> <destdir>" % progname
def diff_dirs(debug, source_dir, target_dir):
if debug:
print("Verifying that all the content files in \"" +
source_dir + "\" is in \"" + target_dir + "\"")
sdir = []
sdir.append(source_dir)
tdir = []
tdir.append(target_dir)
source_filelist = find_files(sdir,
find_content.DEFAULT_EXCLUDE_DIRS,
find_content.DEFAULT_EXTENSIONS,
False)
target_filelist = find_files(tdir,
find_content.DEFAULT_EXCLUDE_DIRS,
find_content.DEFAULT_EXTENSIONS,
True)
missing_files = []
for elem in source_filelist:
found = False
if debug:
sys.stdout.write('.')
for dest in target_filelist:
if dest == elem[1]:
found = True
if not found:
missing_files.append(elem)
return missing_files
if __name__ == '__main__':
if len(sys.argv) != 3:
print_usage()
else:
missing = diff_dirs(debug, sys.argv[1], sys.argv[2])
if debug:
print("")
print("Missing files are:")
if missing:
for e in missing:
print os.path.join(e[0], e[1])