Menu
Open source

stat

The stat method returns a promise resolving to a FileInfo object with information about the file.

Returns

A Promise resolving to a FileInfo object with information about the file.

Examples

JavaScript
import { open, SeekMode } from 'k6/experimental/fs';

let file;
(async function () {
  file = await open('bonjour.txt');
})();

export default async function () {
  // About information about the file
  const fileinfo = await file.stat();
  if (fileinfo.name != 'bonjour.txt') {
    throw new Error('Unexpected file name');
  }

  console.log(JSON.stringify(fileinfo));
}