File Exporter
Export files from working folder

FOLDER
Click the "PICK" button or use the %FILENAME% variable to specify the destination folder.
Input Array
In the input array, each element represents a file in the workspace. Src is the original filename, and dst is the target filename.
// Print every filename in the workspace
input.forEach((file) => console.log(file.src))
Output Array
In the output array, each element represents a file to be exported from the workspace. Src is the original filename, and dst is the target filename.
// Export all files in the workspace and add a fixed string 'auto' in front of each filename
input.forEach((file) => {
output.push({src: file.src, dst: 'auto-'+file.src})
})
--
We are dedicated to improving our content. Please let us know if you come across any errors, including spelling, grammar, or other mistakes, as your feedback is valuable to us! 🤖️⚡️
Last updated