eda_dmt_project_get_all_projects_uuid
Retrieve UUIDs of all projects in EasyEDA Pro, optionally filtered by team, folder, or workspace. Use this to list project identifiers for further operations.
Instructions
dmt_Project.getAllProjectsUuid(teamUuid?: string, folderUuid?: string, workspaceUuid?: string) -> Promise<Array>
获取所有工程的 UUID
remarks: 如若指定 teamUuid,则获取指定团队下的所有工程;
如若指定 folderUuid,则获取指定文件夹下的所有工程;
teamUuid、folderUuid 需要且仅允许指定其一,如若都指定则只取 folderUuid;
如若指定 workspaceUuid,则在指定 Workspace 下获取指定团队/文件夹下的所有工程
returns: 工程 UUID 数组
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | 按官方签名顺序排列的JSON参数数组 | |
| windowId | No | 目标EDA窗口ID;省略时使用当前活动窗口 |