ftos.files.getTabularData

IMPORTANT!  
Starting with v24.3.0, this is renamed from getTabularDataFromFile to ftos.files.getTabularData.

Imports tabular data from a plain text (.csv) or Excel (.xlsx) file stored in the file upload location.

This is a business logic method for business service components.

Syntax

Copy
function ftos.files.getTabularData(filename : string, options : IFtosWorkflowTabularDataOptions): IFtosWorkflowTabularData;
 
Parameter Type Description
filename string Path to the imported file. The file should be stored in a known folder, eg. Import/test1.csv.
options (optional) IFtosWorkflowTabularDataOptions Delimiters, encoding , and other settings of the imported file in JSON format.

Return Value

Returns a IFtosWorkflowTabularData object that stores the data set imported from the file.

Type Aliases

Examples