# How to write files inside a folder

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

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

Check how to do that:

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

1. Create a pipeline and add a **File Writer**.
2. Open the configuration form of the connector.
3. Define the **File Name** parameter as `"folder/file.txt"`.
4. Define the **Data** parameter as `{{ message.data }}`*.* Mind we're using the Double Braces expressio&#x6E;*:* `{{ message.data }}` to access the result of the last component. In this case, we access `data` with the content of the file to be written.
5. Click **Confirm** to save the connector settings.
6. Connect the trigger to the **File Writer**.
7. Run a test in the pipeline (CTRL + ENTER).

The result will be shown:

```json
{
 "fileName": "folder/file.txt",
 "success": true
}
```

* **fileName:** shows the complete path of the written file.
* **success:** when the result is "true", it indicates that the execution was successful.


---

# 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-writer/write-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.
