-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgcdv2gnf.py
57 lines (48 loc) · 2.24 KB
/
gcdv2gnf.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
import os
header = 0x474E4620F8000000.to_bytes(8,'big')
folder = 'E:\GRR\gcd\\'
output_folder = 'E:\GRR\gnf\\'
files = []
# r=root, d=directories, f = files
for r, d, f in os.walk(folder):
for file in f:
if '.gcdm' in file:
pass
elif '.gcdv' in file:
files.append(os.path.join(r, file))
elif '.gcd' in file:
files.append(os.path.join(r, file))
for file_path in files:
with open(r'%s' % (file_path), 'rb') as f:
print("Open File: %s" % (f.name))
data = f.read()
count = 0
header_index = data.find(header, 0)
next_header_index = data.find(header, header_index + len(header))
if header_index >= 0 and next_header_index >= 0:
print("Found header at %s and ending at %s" \
% (header_index, next_header_index))
body = data[header_index: next_header_index]
while body is not None:
with open(r"%s%s_%d.gnf" % (output_folder, os.path.basename(f.name).split('.')[0], count), "wb") as output:
output.write(body)
print("Exported #%d" % count)
count += 1
header_index = next_header_index
next_header_index = data.find(header,\
next_header_index + len(header) )
if header_index >= 0 and next_header_index >= header_index:
print("Found header at %s and ending at %s" \
% (header_index, next_header_index))
body = data[header_index: next_header_index]
else:
print("Found header at %s and ending at %s" \
% (header_index, len(data)))
body = data[header_index: len(data)]
#print("body: %s" % body)
with open(r"%s%s_%d.gnf" % (output_folder, os.path.basename(f.name).split('.')[0], count), "wb") as output:
output.write(body)
print("Exported #%d" % count)
count += 1
break
print("Export completed with %d gnfs exported" % (count))