-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyfile.py
138 lines (129 loc) · 3.62 KB
/
myfile.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
'''
Unreliable file utils
'''
import os
from os import path, listdir, rmdir, chdir, getcwd
from os.path import isfile, isdir
import argparse
from interactive import listen
import sys
from io import BytesIO
import hashlib
def copy(src_name = None, dest_name = None):
'''
Copies only binary content, leaving meta data.
'''
src_name = src_name or input('from: ')
dest_name = dest_name or input('to: ')
if isfile(dest_name):
print('Destination file alreay exists. Overwrite? Y/N')
if listen([b'y', b'n']) != b'y':
print('Aborted. ')
return
with open(src_name, 'rb') as src:
with open(dest_name, 'wb+') as dest:
dest.write(src.read())
print('Copied. ')
def eraseFile(filename, verbose = True):
'''
Fill file with zeros and erase.
'''
filename = filename or input('file: ')
assert isfile(filename), "Doesn't exist. "
size = os.stat(filename).st_size
with open(filename, 'wb') as f:
f.write(bytearray(size))
os.remove(filename)
if verbose:
print('Erased file. ')
def eraseDir(path, recursion_root = True):
assert ' ' not in path, 'Dont use space in path!'
if recursion_root:
saved_cd = getcwd()
chdir(path)
ls = listdir()
for i in ls:
if isfile(i):
eraseFile(i, verbose = False)
elif isdir(i):
eraseDir(i, recursion_root = False)
else:
input('ERROR: A thing is neither file nor dir!!! Enter to exit...')
sys.exit(1)
chdir('..')
rmdir(path)
if recursion_root:
chdir(saved_cd)
print('Erased dir. ')
def erase(thing):
if isfile(thing):
eraseFile(thing)
elif isdir(thing):
eraseDir(thing)
else:
assert False, thing + ' not file nor dir. '
def openAsciize(filename, verbose = False):
'''Only supports 'rb'. '''
if verbose:
print('Asciizing file...')
outIO = BytesIO()
with open(filename, 'rb') as f:
while True:
byte = f.read(1)
if byte == b'':
break
if byte[0] >= 128:
outIO.write(b'?')
else:
outIO.write(byte)
outIO.seek(0)
if verbose:
print('done')
return outIO
def sysArgvOrInput(prompt = '(Drag file here)\npath/file.ext='):
# deprecated!
if len(sys.argv) >= 2:
return sys.argv[1]
else:
return input(prompt).strip('"')
del sysArgvOrInput
def parseArgsOrInput(
prompt = '(Drag file here)\npath/file.ext=',
parser_description = '',
):
parser = argparse.ArgumentParser(description=parser_description)
parser.add_argument(
'filename', type=str,
nargs='?', default=None,
)
args = parser.parse_args()
if args.filename is None:
return input(prompt).strip('"')
else:
return args.filename
sysArgvOrInput = parseArgsOrInput
def hashFile(filename, chunk = 65536):
'''
Uses MD5. Not secure!
'''
hasher = hashlib.md5()
with open(filename, 'rb') as f:
while True:
buffer = f.read(chunk)
if len(buffer) == 0:
break
hasher.update(buffer)
return hasher.hexdigest()
if __name__ == '__main__':
if len(sys.argv) >= 2:
if sys.argv[1] == 'erase':
target = sys.argv[2]
else:
target = sys.argv[1]
print('Erase %s? y/n ' % target)
if listen(['y', 'n']) == b'y':
erase(target)
sys.exit(0)
print('Opening console. You can access sys.argv')
from console import console
console(globals())