# Get File Info

> `UiPath.Box.Activities.File.GetFileInfo`

`UiPath.Box.Activities.File.GetFileInfo`

The **Get File Info** activity uses the Box [Get file information](https://developer.box.com/reference/get-files-id/) API to retrieve specific file information from a specified file (**File Id**).

After retrieving the information, the activity outputs the name of the file as a `String` value (**File Name**), the locked status as a `Boolean` value (**Is Locked**), and the size of the file as in `Int64` value` (**Size**).

## 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.

1. Complete the [Setup](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-setup) steps.
2. Add the [Box Scope](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-scope) activity to your project.
3. Add an activity or run an external process that outputs a `File.Id` value (e.g., [Upload File](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-upload-file), [Search for Content](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-search-for-content), etc.).
4. Add the **Get File Info** activity inside the **Box Scope** activity.
5. Enter a value for the [Input](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-get-file-info#get-file-info) property.
6. Create and enter `String`, `Boolean`, and `Int64` variables for the [Output](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-get-file-info#get-file-info) properties.
   * Your input property values are sent in the [Get file information](https://developer.box.com/reference/get-files-id/) API operation request.
   * The operation returns the `String`, `Boolean`, and `Int64` values to your output property variables.

     ![docs image](https://dev-assets.cms.uipath.com/assets/images/activities/legacy-integrations-docs-image-179376-dee422b2-39ed132b.webp)

## Properties

### Common

* **ContinueOnError** - Specifies if you want the activity to continue running when an error is thrown. This field supports only `Boolean` values.
* **DisplayName** - The display name of the activity. This field supports only `Strings` or `String` variables.

### Input

* **File ID** - The ID of the file that you want to retrieve comments from. This field supports only `Strings` or `String` variables. To get the **File ID** value, add an activity or run an external process that outputs a `File.Id` object (e.g., [Upload File](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-upload-file), [Search for Content](https://docs.uipath.com/activities/other/latest/legacy-integrations/box-search-for-content), etc.).

### Misc

* **Private** - If selected, the values of variables and arguments are no longer logged at Verbose level.

### Output

* **File Name** - The name of the file. This field supports only `String` variables.
* **File Lock** - A `Boolean` value that reports the current file lock status. Enter a `Boolean` variable. The `Boolean` values are:
  + *True* - file is locked.
  + *False* - file is unlocked.
* **Size** - A `Int64` value representing the size of the file.
