OS

The 'os' module provides operating system information

Function Signatures

// Lists the contents of a directory.
const list_dir = (filepath: String) => [String]

// Retrieves the name of the operating system.
const os_name = () => String

// Walks through a directory tree and yields each file path.
const walk = (filePath: String) => Coroutine<String>

Last updated