Get Folder Items
UiPath.Box.Activities.Folder.GetFolderItems
The Get Folder Items activity uses the Box List items in folder API to retrieve the folders and files stored in the specified folder (Folder ID).
After retrieving the items, the activity outputs the file details in an BoxFile[] object (Files) and the folder details in an BoxFolder[] object (Folders).
How it works
The following steps and message sequence diagram is an example of how the activity works from design time (i.e., the activity dependencies and input/output properties) to run time.
- Complete the Setup steps.
- Add the Box Scope activity to your project.
- Add an activity or run an external process that outputs a
Folder.Idvalue (e.g., Create Folder, Search for Content, etc.). - Add the Get Folder Items activity inside the Box Scope activity.
- Enter a value for the Input property.
- Create and enter
BoxFile[]andBoxFolder[]variables for the Output properties.-
Your input property values are sent in the List items in folder API operation request.
-
The operation returns the
BoxFiles[]andBoxFolders[]values to your output property variables.
-
Properties
Common
- ContinueOnError - Specifies if you want the activity to continue running when an error is thrown. This field supports only
Booleanvalues. - DisplayName - The display name of the activity. This field supports only
StringsorStringvariables.
Input
- Folder ID - The ID of the folder that you want to retrieve information from. This field supports only
StringsorStringvariables. To get the Folder ID value, add an activity or run an external process that outputs aFile.Idobject (e.g., Create Folder, Search for Content, etc.).
Misc
- Private - If selected, the values of variables and arguments are no longer logged at Verbose level.
Options
- Max Items to Return - The maximum number of results that you want returned. Enter an
Int32orInt32variable. The maximum number of items that get returned is 1,000.
Output
- Files - The
IEnumerable<BoxFiles>object that includes the file items. Enter aBoxFiles[]variable. - Folders - The
IEnumerable<BoxFolder>object that includes the folder items. Enter aBoxFolder[]variable.