Manage folders
Create folder
To create a folder:
- In Data, click Add.
- Select Create folder.
- Type a folder name.
- Click Create.
Limitations
- A project can’t contain more than 500 folders.
- You can't create subfolders.
SDK function
To create a folder:
sa.create_folder(
project = "Project Name",
folder_name = "Folder Name")
Copy folder
To copy a folder:
- In Data, click the three dots
⋮
on the folder you want to copy. - Click Copy.
For Multimodal projects, if the items in the folder you’re copying are categorized, then those categories will be copied over as well.
- You can copy only one folder at a time.
- You can't copy a folder to another folder.
Rename folder
To rename a folder:
- In Data, click the three dots
⋮
on the folder you want to rename. - Select Rename.
- In the pop-up, type in a new name.
- Click Save.
Change folder status
To change a folder's status:
- In Data, find the folder you want to change the status of.
- Click on the Status dropdown.
- Select a status to change to:
- Not Started: The folder has not started yet. By default, all the newly created folders have a Not Started status.
- In Progress: The folder is in progress.
- Completed: The folder is completed.
- On Hold: The folder is paused or stopped until further notice.
Delete folder
To delete a folder:
- In the Data tab, click the three dots
⋮
on the folder you want to delete. - Click Delete.
- In the pop-up, click Delete.
SDK function
To delete a list of folders:
sa.delete_folders(
project = "Project Name",
folder_names = ["Folder 1", "Folder 2"])
Sort folders
In Data, you can click on Name, or Status to sort all folders in ascending ʌ
or descending v
order.
Status is sorted by: Not started, In progress, Returned, Quality Check, Completed, and Skipped.
Find folder
To find a folder, go to Data and type the name of the folder in the search bar.
SDK Functions
To get all the folders in a project:
sa.search_folders(project = "Project Name")
To get folders whose names contain a given keyword:
sa.search_folders(
project = "Project Name",
folder_name = "Car")
Updated 24 days ago