Skip to main content

File Exporter

Export files from the working folder. FOLDER is the target export folder — click the "PICK" button to specify the file path or use the %FILENAME% variable.

No-Code Editor

Provides No-Code commands such as: "Filter Files Before Export". For example, export files from the working folder whose filename contains report.pdf to the desktop.

Low-Code Editor

input Array

Each element in the input array represents a file in the working folder, where src is the original filename and dst is the target filename.

// Print the name of each file in the working folder
input.forEach((file) => console.log(file.src))

output Array

Each element object in the output array represents a file to be exported from the working folder, where src is the original filename and dst is the target filename.

// Export all files from the working folder, prepending a fixed string 'auto' to each filename
input.forEach((file) => {
output.push({src: file.src, dst: 'auto-'+file.src})
})