fileLength function

int fileLength(
  1. String pathToFile
)

Returns the length of the file at pathToFile in bytes.

Implementation

// ignore: discarded_futures
int fileLength(String pathToFile) => waitForEx(core.fileLength(pathToFile));