(path)
| 37 | |
| 38 | @staticmethod |
| 39 | def split_zip_style_path(path): |
| 40 | pos_at = path.index('@') |
| 41 | assert pos_at != -1, "character '@' is not found from the given path '%s'" % path |
| 42 | |
| 43 | zip_path = path[0: pos_at] |
| 44 | folder_path = path[pos_at + 1:] |
| 45 | folder_path = str.strip(folder_path, '/') |
| 46 | return zip_path, folder_path |
| 47 | |
| 48 | @staticmethod |
| 49 | def list_folder(path): |
no outgoing calls
no test coverage detected