File Enumerater
List files in a specified folder and write them to an output.csv file. FOLDER is the specified folder — click the "PICK" button to specify the file path or use the %FILENAME% variable.

No-Code Editor
Provides No-Code commands such as: "Reset output.csv" and "Filter Files to List". For example, add files from the desktop whose filename contains invoice to output.csv.

Low-Code Editor

input Array
Each element in the input array represents the path of a file in the specified folder.
// Print the path of each file in the specified folder
input.forEach((filepath) => console.log(filepath))
output Array
Each file path in the output array will be used to generate a CSV format file.
// Create a CSV table from all TXT files in the specified folder
input.forEach((filepath) => {
if (filepath.endsWith('txt')) output.push(filepath)
})