mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 00:32:51 +02:00
work on making the netscript api tighter
This commit is contained in:
@@ -9,28 +9,26 @@ Write data to a file.
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
write(handle: string | number, data?: string[] | number, mode?: "w" | "a"): void;
|
||||
write(handle: string, data?: string[] | number, mode?: "w" | "a"): Promise<void>;
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| handle | string \| number | Port or text file that will be written to. |
|
||||
| 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. |
|
||||
|
||||
<b>Returns:</b>
|
||||
|
||||
void
|
||||
Promise<void>
|
||||
|
||||
## Remarks
|
||||
|
||||
RAM cost: 1 GB
|
||||
|
||||
This function can be used to either write data to a port or to a text file (.txt).
|
||||
This function can be used to either write data to a text file (.txt).
|
||||
|
||||
If the first argument is a number between 1 and 20, then it specifies a port and this function will write data to that port. The third argument, mode, is not used when writing to a port.
|
||||
|
||||
If the first argument is a string, then it specifies the name of a text file (.txt) and 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.
|
||||
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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user