mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
35 lines
738 B
Markdown
35 lines
738 B
Markdown
<!-- 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
|
|
|
|
Read content of a file.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
read(handle: string): any;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| handle | string | Port or text file to read from. |
|
|
|
|
<b>Returns:</b>
|
|
|
|
any
|
|
|
|
Data in the specified text file or port.
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 0 GB
|
|
|
|
This function is used to read data from a port or from a text file (.txt).
|
|
|
|
This function will return the data in the specified text file. If the text file does not exist, an empty string will be returned.
|
|
|