Moves a file to a new location
Source file path
Destination file path
OperationResult indicating success or failure
const result = await moveFile('/source/file.txt', '/destination/file.txt');if (result.success) { console.log('File moved successfully');} Copy
const result = await moveFile('/source/file.txt', '/destination/file.txt');if (result.success) { console.log('File moved successfully');}
Moves a file to a new location