Online Documents
English
English
  • First Launch Experience
  • Activate Software License
  • How to Train EMILY?
  • Simple Web Automation
  • Web Automation Tools
  • Web Automation Processor
  • User Fill
  • Workspace Script
  • File Exporter
  • File Enumerator
  • EXCEL Processor
  • EXCEL Analyzer
  • EXCEL Writer
  • EXCEL Filler
  • CSV Creator
  • PowerShell
  • PDF Analyzer
  • Mail Sender
  • Mail Reader
  • Exchange Mail Sender
  • Exchange Mail Reader
  • HTTP Analyzer
  • Command Line
  • DOCX Templater
  • SQL Executor
  • Desktop Automation (DA)
  • SFTP
  • JSON API Server
  • Chart
  • DOCX2HTML
  • Manage Folder
  • Google Drive
  • Google Sheets
  • Google OCR
  • Google NLU
  • Azure Form Recognizer
  • Anti-Captcha
  • ChatGPT
  • Gemini
  • Schedule Trigger
  • Mail Trigger
  • File Trigger
  • API Trigger
  • Protect Text
  • Flexibility & Security
  • Announcements
    • Version Release
    • Third Party Notice
Powered by GitBook
On this page
  • FOLDER
  • Input Array
  • Output Array

File Exporter

Export files from working folder

PreviousWorkspace ScriptNextFile Enumerator

Last updated 1 year ago

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 is valuable to us! 🤖️⚡️

feedback