# How to read files inside a folder

Let's say you have a file named `"file.txt"` inside `"folder"`, available in your pipeline.

To read this file inside a folder, you may use a **File Reader** that indicates the path "folder/file.txt". That way, you can access the file 'file.txt'.

Follow the steps below to learn how to do it:

<figure><img src="/files/OE2z8oSspuvnd5DyBfgp" alt=""><figcaption></figcaption></figure>

1. Create a pipeline and add a **File Reader**.
2. Open the configuration form of the connector.
3. Define the **File Name** parameter as `"folder/file.txt"`.
4. Click **Confirm** to save the connector settings.
5. Connect the trigger to the **File Reader***.*
6. Run a test in the pipeline (CTRL + ENTER).

The result will be shown:

```json
{
  "data": [
    "my sample content"
  ],
  "fileName": "folder/file.txt",
  "lineCount": 1
}
```

* **data:** array with the content of the file read by **File Reader***.*
* **fileName:** shows the complete path of the read file.
* **lineCount:** identifies the amount of lines within the file read by **File Reader***.*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.digibee.com/documentation/connectors-and-triggers/connectors/files/file-reader/read-files-in-a-folder.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
