(name, path)
| 50 | return res |
| 51 | |
| 52 | def is_exists(name, path): |
| 53 | res = True |
| 54 | if not os.path.exists(path): |
| 55 | print('makeimg err! No ' + name + ' file found: ' + path) |
| 56 | res = False |
| 57 | return res |
| 58 | |
| 59 | def get_exec_path(path): |
| 60 | (file_path, file_name) = os.path.split(path) |