(path)
| 30 | |
| 31 | @staticmethod |
| 32 | def split_zip_style_path(path): |
| 33 | pos_at = path.index('@') |
| 34 | assert pos_at != -1, "character '@' is not found from the given path '%s'" % path |
| 35 | |
| 36 | zip_path = path[0: pos_at] |
| 37 | folder_path = path[pos_at + 1:] |
| 38 | folder_path = str.strip(folder_path, '/') |
| 39 | return zip_path, folder_path |
| 40 | |
| 41 | @staticmethod |
| 42 | def list_folder(path): |
no outgoing calls
no test coverage detected