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

35 lines
1.2 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-09-23 21:03:38 +02:00
write(filename: string, data?: string[] | number | string, mode?: "w" | "a"): void;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2022-09-23 21:03:38 +02:00
| filename | string | Name of the file to be written to. |
2022-01-08 19:25:06 +01:00
| data | string\[\] \| number \| string | Data to write. |
2022-09-23 21:03:38 +02:00
| mode | "w" \| "a" | Defines the write mode. |
2021-10-30 18:34:14 +02:00
<b>Returns:</b>
2022-09-23 21:03:38 +02:00
void
2021-10-30 18:34:14 +02:00
## Remarks
RAM cost: 0 GB
2021-10-30 18:34:14 +02:00
2022-09-23 21:03:38 +02:00
This function can be used to write data to a text file (.txt) or a script (.js or .script).
2022-09-23 21:03:38 +02:00
This function will write data to that file. If the specified file does not exist, then it will be created. The third argument mode, defines how the data will be written to the 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 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 file.