-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileCommands.py
37 lines (31 loc) · 1.12 KB
/
FileCommands.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
class FileManipulator():
"""Contains all the functions necessary for Files interfacing.
Attributes:
fileName (str): The name of the file which is going to be manipulated.
"""
def __init__(self,fileName):
self.fileName=fileName
try:
self.arxeio= open(self.fileName, 'rb+')#raises error if file doesnt already exists
except:
self.arxeio= open(self.fileName, 'wb+')#creates file
def run(self):
pass
def write(self,data):
"""Writes data to File
Parameters:
data (everything that can be printed): The data to write to file.
"""
self.arxeio.write(data)
def close(self):
self.arxeio.close()
def read(self):
"""Reads file in 1 byte step and prints the int represented by this byte """
with self.arxeio as f:
byte = f.read(1)
while byte:
print(int.from_bytes(byte,byteorder='big'))
byte = f.read(1)
if __name__ == "__main__":
FileManipulator("TelemetryData.tlmdt").read()
input('Press enter to terminate...')