Filtering (Basic or Advanced)
Allows users to easily manage and organize their data movement workflows by filtering files based on specific criteria. Handle different time - date threshold in the filter module such as : creation date, last access date, ...
Two different types of filtering are available:
basic mode
Advanced mode: it provides an embedded scripting editor.
Based on File Name
The file name and path can be used in the filtering module.

Based on File Extension

Based on File Size

Based on Boolean Operators
Boolean operators are available. Default operator is inclusive OR, different operators can be set.


Basic Mode
This mode includes the capability to define expressions directly in the Console based on the following types:
Creation Date
Older Than Earlier Than Before After
Filter the selection on when the file has been created.
It allows to select only files that have been created before or after a specific date.
File Name
Matches Doesn't Match
It allows to filter the selection based on the name of the file.
Examples : '.' for any type of character '*' from 0 to infinite
Regex expressions are also supported.
File extension
Equal Doesn't Match
It allows to filter your selection based on the file extension.
File extension name has to be defined. Example: pdf
File Path
Matches Doesn't Match
It allows to filter your selection based on the folder(s) path.
Regex expressions are also supported.
Last access date
Older Than Earlier Than Before After
Same but with a trigger on when the file has been accessed for the last time.
Last modification date
Older Than Earlier Than Before After
Filter the selection on when the file has been modified for the last time.
It allows to select only files that have been modified before or after a specific date.
Size
More than Less than
Filter the file selection based on the files size
Advanced Mode
This mode allows the usage of an online scripting editor to define advances filter which cannot be defined in using the simple graphical mode.
The scripting Language is "LUA" , which a known language , with online documentation available.
The scripting language supports :
Logical Operator such as 'and' , 'or'
Defined Functions
Example of a LUA script
Standard filtering methods are available :
Filtering by the size of the file
Example of LUA code
file
Match the process file
">"
Comparison symbol
234000
File size
Filtering by the name of the file
Example of LUA code
Results
The workflow will only process files which are located in folder with a name which contains "archive"
file
Match the process file
"\\b(\\w*archive\\w*)\\b"
Regex expression
Filtering by the creation date
Example of LUA code
Result
The workflow will only process files with a creation date older or earlier than
file
Match the process file
"C"
Relative to the Creation Date
">"
">", "<" are available for (older than, earlier than)
20
Number of Year, Month, Day, Hour, Minute, Second
"D"
"Y", "M", "D", "H", "M", "S" are available for (Year, Month, Day, Hour, Minute, Second)
Filtering by the modification date
Example of LUA code
Result
The workflow will only process files with an access date older or earlier than
file
Match the process file
"C"
Relative to the Last Access Date
">"
">", "<" are available for (older than, earlier than)
20
Number of Year, Month, Day, Hour, Minute, Second
"D"
"Y", "M", "D", "H", "M", "S" are available for (Year, Month, Day, Hour, Minute, Second)
Some addition information which can be helpful for using the feature :
LUA WebSite : https://www.lua.org/
LUA Online Script validation https://www.tutorialspoint.com/execute_lua_online.php
REGEX Online validation : https://regexr.com/
Last updated
Was this helpful?