Remove a file. Args: filepath (str, Path): Path to be removed.
(self, filepath: Union[str, Path])
| 1057 | self.client.put_text(obj, filepath) |
| 1058 | |
| 1059 | def remove(self, filepath: Union[str, Path]) -> None: |
| 1060 | """Remove a file. |
| 1061 | |
| 1062 | Args: |
| 1063 | filepath (str, Path): Path to be removed. |
| 1064 | """ |
| 1065 | self.client.remove(filepath) |
| 1066 | |
| 1067 | def exists(self, filepath: Union[str, Path]) -> bool: |
| 1068 | """Check whether a file path exists. |
no outgoing calls
no test coverage detected