wyf1996

Results 1 issues of wyf1996

`def changeFile(path, all_files): file_list = os.listdir(path) for file in file_list: cur_path = os.path.join(path, file) if os.path.isdir(cur_path): changeFile(cur_path, all_files) else: if os.path.splitext(file)[-1] == '.info': file = open(cur_path, "rb") fileJson = json.load(file)...