For the complete documentation index, see llms.txt. This page is also available as Markdown.

Manage Folders

You can create, list, update, and delete workspace folders from the command line.

List Folders

roboflow folder list

With JSON output:

roboflow folder list --json

Get Folder Details

roboflow folder get <folder-id>
roboflow folder get <folder-id> --json

Create a Folder

roboflow folder create "Training Data"

Options

Flag
Description

--parent

Parent folder ID (for nesting)

--projects

Comma-separated project IDs to include

Example with projects:

roboflow folder create "Q2 Models" --projects my-project,other-project

Update a Folder

Rename a folder:

Delete a Folder

JSON Output

All folder commands support --json for structured output:

Exit codes: 0 = success, 1 = error, 2 = auth error, 3 = not found.

Last updated

Was this helpful?