Post Process Handling

Introduction

The Hotfolder App allows you to process your images inside active directories. You can enable/disable those directories in the App/settings page.

Active Directories

By default, we use 3 active directories to process the files in.

  • incoming: the directory where you will upload your files (required)
  • done: the directory that will hold the processed files
  • failed: the directory that will hold the failed files, with log
# default
{
  "active_directories": [
    "incoming",
    "failed",
    "done"
  ]
}
# Done/Failed are optional so if you don't want any file residue after processing then set only incoming directory as **active**.
{
  "active_directories": ["incoming"]
}