AristoTelos Academy

File Import Job for Import Processing Rules

File Import Job for Import Processing Rules

Use Case

ReadDataFrom, ArchivePath and SortByDateFromFilename fields control which files are imported and how processed files are handled after import.

Import only newer data

Useful for preventing repeated import of historical data.

{ "ReadDataFrom": "2026-05-01 00:00:00"}

Archive processed files after import

Useful for preventing duplicate file imports and keeping the source directory clean.

{
"ArchivePath": "C:\\Imports\\Archive\\"
}

Sort imported files by date from file name

Useful when imported files contain timestamps in their file names and must be processed chronologically.

{
"SortByDateFromFilename": true
}

Was this helpful?