AristoTelos Academy

File Import Job Parameters

File Import Job Parameters

Jobs for importing data from files or folders.

Name or path of the source file.

Typestring

Path or file pattern used for file-based import.

Typestring

Source directory path.

Typestring

Directory from which files are loaded.

Typestring

Directory where processed files are archived.

Typestring

Date/time from which data should be read.

Typestring

Determines whether files should be sorted by date parsed from the file name.

TypeBool

Log file name.

Typestring

Directory where import logs are stored.

Typestring

Client or integration identifier.

Typestring

Use Cases

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?