(filepath)
| 1198 | """ |
| 1199 | |
| 1200 | def remove_if_exit(filepath): |
| 1201 | if os.path.exists(filepath): |
| 1202 | os.remove(filepath) |
| 1203 | |
| 1204 | # NOTE: Use unique id as suffix to avoid write same file at same time in |
| 1205 | # both multi-thread and multi-process. |
no test coverage detected