(directory_path : str)
| 180 | |
| 181 | |
| 182 | def remove_directory(directory_path : str) -> bool: |
| 183 | if is_directory(directory_path): |
| 184 | shutil.rmtree(directory_path, ignore_errors = True) |
| 185 | return not is_directory(directory_path) |
| 186 | return False |
| 187 | |
| 188 | |
| 189 | def resolve_relative_path(path : str) -> str: |