how to transfer data from one file to another in node.js code example
Example: copy text from file to another file in javascript with fs
'use strict';
import fs from 'fs';
let fileContent = 'Anything what you want';
let message = fs.writeFileSync('message.txt', fileContent);
function copyContent(fileName: string, dest: string): boolean {
try {
fs.copyFileSync(fileName, dest);
console.log(dest);
return true;
} catch (err) {
return false;
}
}
console.log(copyContent('message.txt', 'destination.txt'));