> For the complete documentation index, see [llms.txt](https://docs.helmut.de/helmut4-releases/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.helmut.de/helmut4-releases/helmut4-components/streamdesigner/nodes/actions/file-and-folder-22/file-create-action.md).

# File Create Action

The **File Create Action** node creates one or more empty files at specified locations on the operating system where the stream is executed.

The files are created directly on the host system (client or server). This makes the node useful for generating placeholder, trigger, or log files that can later be filled or processed by other systems or subsequent nodes in the workflow.

***

#### Input Parameters

**File Path**\
List of full file paths (including filename and extension) for the files to be created.\
Multiple files can be created in a single execution.

**If New File Exists**\
Defines how the node behaves if the target file already exists:

* **FAIL** — stop the node with an error
* **SKIP** — keep the existing file and do nothing
* **DELETE\_EXISTING** — overwrite the existing file
* **RENAME\_EXISTING** — rename the existing file before creating the new one
* **INCREMENT\_NAME** — create a new file with an incremented filename

<figure><img src="/files/4z2nCiHwiVeqtgkT2Kn8" alt="" width="349"><figcaption></figcaption></figure>

#### Behavior

* Creates empty files only (no file content is written)
* Operates on the host running the stream
* Does not modify existing files unless specified by the conflict rule
* Supports asynchronous execution

#### Typical Use Cases

* creating trigger files for external systems
* generating placeholder or marker files
* preparing log or report files (e.g., `.txt` files)
* initiating automated processing workflows
* creating delivery confirmation files

#### Practical Note

This node only creates the file itself.\
If you need to write content into the file, another node or external process must handle the data writing after the file has been created.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.helmut.de/helmut4-releases/helmut4-components/streamdesigner/nodes/actions/file-and-folder-22/file-create-action.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
