MCPcopy
hub / github.com/google/earthengine-api / createFolder

Function createFolder

python/ee/data.py:1520–1531  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

1518
1519
1520def 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
1534def copyAsset(

Callers

nothing calls this directly

Calls 1

createAssetFunction · 0.85

Tested by

no test coverage detected