[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [write](./bitburner.ns.write.md) ## NS.write() method Write data to a file. Signature: ```typescript write(handle: string, data?: string[] | number, mode?: "w" | "a"): Promise; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | handle | string | Port or text file that will be written to. | | data | string\[\] \| number | Data to write. | | mode | "w" \| "a" | Defines the write mode. Only valid when writing to text files. | Returns: Promise<void> ## Remarks RAM cost: 1 GB 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.