Creates an asset folder. Returns a description of the newly created folder. Args: path: The path to the folder to create. Returns: A description of the newly created folder.
(path: str)
| 1518 | |
| 1519 | |
| 1520 | def createFolder(path: str) -> dict[str, Any]: |
| 1521 | """Creates an asset folder. |
| 1522 | |
| 1523 | Returns a description of the newly created folder. |
| 1524 | |
| 1525 | Args: |
| 1526 | path: The path to the folder to create. |
| 1527 | |
| 1528 | Returns: |
| 1529 | A description of the newly created folder. |
| 1530 | """ |
| 1531 | return createAsset({'type': 'FOLDER'}, path) |
| 1532 | |
| 1533 | |
| 1534 | def copyAsset( |
nothing calls this directly
no test coverage detected