mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 10:13:52 +01:00
22 lines
667 B
ReStructuredText
22 lines
667 B
ReStructuredText
mv() Netscript Function
|
|
==============================
|
|
|
|
.. js:function:: mv(hostname, sourceFile, targetFile)
|
|
|
|
:RAM cost: 0 GB
|
|
|
|
:param string hostname: Hostname of the target server.
|
|
:param string sourceFile: Name of the file to be moved/renamed.
|
|
:param string targetFile: Target name of the file.
|
|
|
|
Move the source file to target file on the given server.
|
|
|
|
This command only works for scripts and text files (.txt). It cannot, however, be used to convert from script to text file, or vice versa.
|
|
|
|
This function can also be used to rename files.
|
|
|
|
Examples:
|
|
|
|
.. code-block:: javascript
|
|
|
|
ns.mv("home", "foo.js", "old_foo.txt") |