File Increment Name Action

The File Increment Name Action node generates a new filename by incrementing the provided file name if a file with the same name already exists.

The node checks the specified file path and increases the filename by appending a number until a non-existing filename is found. No file is created or modified during this process — the node only returns the next available filename.

The resulting file path can then be used by subsequent nodes.

Input Parameters

File Path Full file path (including filename and extension) that should be checked and incremented if necessary.

Output and Wildcards

The resulting filename (including full path) is returned and can be accessed using:

Behavior

  • Checks whether the specified file already exists

  • If it exists, increments the filename (e.g., file.txtfile_1.txtfile_2.txt, etc.)

  • Returns the first available filename

  • Does not create or modify any file

  • Supports asynchronous execution

Typical Use Cases

  • preparing export destinations

  • preventing overwriting of existing files

  • automated render or delivery workflows

  • creating versioned output files

Practical Note

Use this node when you want to ensure a process continues even if a target filename already exists. Instead of overwriting a file or stopping the workflow, the stream automatically receives a safe, unused filename for the next operation (such as a copy, render, or export).

Last updated