List files on a server.
Signature:
ls(host: string, grep?: string): string[];| Parameter | Type | Description |
|---|---|---|
| host | string | Hostname of the target server. |
| grep | string | A substring to search for in the filename. |
Returns:
string[]
Array with the filenames of all files on the specified server.
RAM cost: 0.2 GB
Returns an array with the filenames of all files on the specified server (as strings). The returned array is sorted in alphabetic order.