Skip to main content

Class: Files

dg.Files

Provides convenient file shares access *

Constructors

constructor

new Files()

Methods

openTable

openTable(path): Promise<DataFrame>

Reads a table from file. If file contains more than one table, reads the first one.

Parameters

NameType
pathstring

Returns

Promise<DataFrame>

Defined in

src/data.ts:16


openTables

openTables(path): Promise<DataFrame[]>

Reads all tables from file

Parameters

NameType
pathstring

Returns

Promise<DataFrame[]>

Defined in

src/data.ts:23