bitburner-src/markdown/bitburner.ns.write.md

35 lines
1.3 KiB
Markdown
Raw Normal View History

2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [write](./bitburner.ns.write.md)
## NS.write() method
Write data to a file.
2021-10-30 18:34:14 +02:00
<b>Signature:</b>
```typescript
2022-01-08 19:25:06 +01:00
write(handle: string, data?: string[] | number | string, mode?: "w" | "a"): Promise<void>;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| handle | string | Port or text file that will be written to. |
2022-01-08 19:25:06 +01:00
| data | string\[\] \| number \| string | Data to write. |
2021-10-30 18:34:14 +02:00
| mode | "w" \| "a" | Defines the write mode. Only valid when writing to text files. |
<b>Returns:</b>
Promise&lt;void&gt;
2021-10-30 18:34:14 +02:00
## Remarks
RAM cost: 0 GB
2021-10-30 18:34:14 +02:00
This function can be used to either write data to a text file (.txt).
This function will write data to that text file. If the specified text file does not exist, then it will be created. The third argument mode, defines how the data will be written to the text file. If \*mode is set to “w”, then the data is written in “write” mode which means that it will overwrite all existing data on the text file. If mode is set to any other value then the data will be written in “append” mode which means that the data will be added at the end of the text file.