File Exporter
Export files from working folder
Last updated
Export files from working folder
Last updated
// Print every filename in the workspace
input.forEach((file) => console.log(file.src))// 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})
})