(name: AnyStr)
| 186 | |
| 187 | |
| 188 | def is_verified(name: AnyStr) -> bool: |
| 189 | return is_exists_file_and_md5(name) and check_md5(name, md5_ext(name)) |
| 190 | |
| 191 | |
| 192 | def make_symlink(target: AnyStr, link_name: AnyStr, force: bool = False): |
no test coverage detected