:param path: :type path: str :return:
(path)
| 148 | |
| 149 | |
| 150 | def remove_old_file(path): |
| 151 | """ |
| 152 | :param path: |
| 153 | :type path: str |
| 154 | :return: |
| 155 | """ |
| 156 | if check_dir(path): |
| 157 | os.remove(path) |
| 158 | |
| 159 | |
| 160 | def delete_file(path): |
no test coverage detected