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

57 lines
1.7 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; [scp](./bitburner.ns.scp.md)
## NS.scp() method
Copy file between servers.
2021-10-30 18:34:14 +02:00
<b>Signature:</b>
```typescript
scp(
files: string[],
source: string,
// tslint:disable-next-line:unified-signatures
destination: string,
): Promise<boolean>;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-11-03 05:27:21 +01:00
| files | string\[\] | Filename or an array of filenames of script/literature files to copy. |
| source | string | Host of the source server, which is the server from which the file will be copied. This argument is optional and if its omitted the source will be the current server. |
2021-11-03 05:27:21 +01:00
| destination | string | Host of the destination server, which is the server to which the file will be copied. |
2021-10-30 18:34:14 +02:00
<b>Returns:</b>
Promise&lt;boolean&gt;
2021-10-30 18:34:14 +02:00
True if the script/literature file is successfully copied over and false otherwise. If the files argument is an array then this function will return true if at least one of the files in the array is successfully copied.
## Remarks
2021-10-30 21:46:34 +02:00
RAM cost: 0.6 GB
2021-10-30 18:34:14 +02:00
Copies a script or literature (.lit) file(s) to another server. The files argument can be either a string specifying a single file to copy, or an array of strings specifying multiple files to copy.
## Example 1
2021-10-30 18:34:14 +02:00
2021-10-30 21:46:34 +02:00
```ts
//Copies foo.lit from the helios server to the home computer:
scp("foo.lit", "helios", "home");
```
## Example 2
```ts
//Tries to copy three files from rothman-uni to home computer:
files = ["foo1.lit", "foo2.script", "foo3.script"];
scp(files, "rothman-uni", "home");
2021-10-30 18:34:14 +02:00
```