2021-10-30 18:34:14 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [read](./bitburner.ns.read.md)
|
|
|
|
|
|
|
|
## NS.read() method
|
|
|
|
|
2021-11-03 23:16:10 +01:00
|
|
|
Read content of a file.
|
2021-10-30 18:34:14 +02:00
|
|
|
|
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
2021-11-04 01:19:52 +01:00
|
|
|
read(handle: string): any;
|
2021-10-30 18:34:14 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2021-11-04 01:19:52 +01:00
|
|
|
| handle | string | Port or text file to read from. |
|
2021-10-30 18:34:14 +02:00
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
2021-11-04 01:19:52 +01:00
|
|
|
any
|
2021-10-30 18:34:14 +02:00
|
|
|
|
|
|
|
Data in the specified text file or port.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
2021-11-12 21:42:57 +01:00
|
|
|
RAM cost: 0 GB
|
2021-10-30 18:34:14 +02:00
|
|
|
|
2021-11-03 23:16:10 +01:00
|
|
|
This function is used to read data from a port or from a text file (.txt).
|
|
|
|
|
2021-11-04 01:19:52 +01:00
|
|
|
This function will return the data in the specified text file. If the text file does not exist, an empty string will be returned.
|
2021-11-03 23:16:10 +01:00
|
|
|
|