Folder Mover
Basic Information
Description | This node is use move processed files into success and error folders |
Input | A list of processed files |
Output | None |
Usage Tags | FILE , MOVER |
Node Settings
successPath ( string, required) : Path to the folder where successfully processed files will be moved
errorPath (string, required) : Path to the folder where unsuccessfully processed files will be moved.
This node should be used alongside Folder Browser and one of the parser nodes, otherwise it will not work.
In folder paths you can use ~ to indicate the current file folder. For example ~\Done will move the file to the subfolder named Done. If the folder paths does not yet exists, the node will create them on its own.
Tips and Advanced usage
This node is generally used when implementing a process that reads files from a shared folder, where new files are added daily. The process then reads the files, process them and at the end moves the files to appropriate folder. Then in the next process run (if configured correctly), only new and unprocessed files will be taken.
Examples
Example node configuration
{
"successPath" :"~\\DONE",
"errorPath" : "~\\ERROR"
}