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 Enumerator

Enumerate the files in a specified folder and output the paths to a .csv file

PreviousFile ExporterNextEXCEL Processor

Last updated 3 months ago

FOLDER

Click the "PICK" button or use the %FILENAME% variable to specify the folder.

Input Array

Each element in the input array represents the pathname of a file within a specified folder.

// Print the pathname of each file within 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 file.

// Create a CSV table containing the pathnames of all the .txt file in the specified folder
input.forEach((filepath) => {
  if (filepath.endsWith('txt')) output.push(filepath)
})

--

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