(filePath)
| 303 | |
| 304 | @staticmethod |
| 305 | def IsHaveFile(filePath): |
| 306 | try: |
| 307 | if os.path.isfile(filePath): |
| 308 | return True |
| 309 | return False |
| 310 | except Exception as es: |
| 311 | Log.Error(es) |
| 312 | return False |
| 313 | |
| 314 | @staticmethod |
| 315 | def DiffDays(d1, d2): |
no test coverage detected