예제 #1
0
    def _default(self):

        file_contents = Lfh.load_file_data(Lfh, self.FILE_NAME)
        direction = ""
        if len(file_contents) == 0:
            print(Err.get_error_message(208))

        Lfh.output_file(file_contents, direction)
예제 #2
0
    def _reverse(self):
        file_contents = Lfh.load_file_data(Lfh, self.FILE_NAME)
        direction = "r"

        Lfh.output_file(file_contents, direction)