2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [ls](./bitburner.ns.ls.md)
|
|
|
|
|
|
|
|
## NS.ls() method
|
|
|
|
|
|
|
|
List files on a server.
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
2023-03-07 14:04:08 +01:00
|
|
|
ls(host: string, substring?: string): string[];
|
2022-10-21 17:16:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2022-11-20 18:07:22 +01:00
|
|
|
| host | string | Hostname of the target server. |
|
2023-03-07 14:04:08 +01:00
|
|
|
| substring | string | _(Optional)_ A substring to search for in the filename. |
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
string\[\]
|
|
|
|
|
|
|
|
Array with the filenames of all files on the specified server.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
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.
|
|
|
|
|