Create Folders
Description
Creates folders.
Function Signature:
def create_folders(path: str) -> None:
Parameters
- path (str): Request path (relative to base URL).
Returns
- None: The function does not return a value.
Example Usage
# Example usage
path = "example"
result = create_folders(path)
print(result)
Behavior
- Executes the function logic with the provided arguments.
- On success, returns the computed value or result object.
Error Handling
- Exceptions are handled within the function where implemented.