判断增量资源是否存在 :return:
(self)
| 30 | pass |
| 31 | |
| 32 | def inc_src_exist(self): |
| 33 | ''' |
| 34 | 判断增量资源是否存在 |
| 35 | :return: |
| 36 | ''' |
| 37 | if self.local_cache.exist_cache: |
| 38 | return True |
| 39 | if self.remote_cache.exist_cache: |
| 40 | return True |
| 41 | return False |
| 42 | |
| 43 | def get_src_info(self): |
| 44 | ''' |