(self, path: str)
| 1022 | self._initialized = True |
| 1023 | |
| 1024 | def _build_url(self, path: str) -> str: |
| 1025 | encoded_path = quote(str(path.replace("\\", "/").lstrip("/")).lstrip("/")) |
| 1026 | return f"{self.base_url}{encoded_path}" |
| 1027 | |
| 1028 | async def _mkdir_p(self, directory_path: str): |
| 1029 | """递归创建目录(类似mkdir -p)""" |
no outgoing calls
no test coverage detected