moveFile 

Requires a Node.js runtime ('qsu/node')Moves a file in the specified file path to another path.
Parameters
| Name | Type | Required | Default |
|---|---|---|---|
filePath | string | ● | – |
| File or directory path | |||
targetFilePath | string | ● | – |
| Path of file to move | |||
Returns
Promise::void
Examples
javascript
await moveFile('/home/user/text.txt', '/home/user/text2.txt');dart
await moveFile('/home/user/text.txt', '/home/user/text2.txt');python
moveFile('/home/user/text.txt', '/home/user/text2.txt')