Answers for "copy file another directory node.js"

3

copy a file and paste with fs

const fs = require('fs');

// File destination.txt will be created or overwritten by default.
fs.copyFile('source.txt', 'destination.txt', (err) => {
  if (err) throw err;
  console.log('source.txt was copied to destination.txt');
});
Posted by: Guest on January-13-2021
0

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'));
Posted by: Guest on December-01-2020

Code answers related to "copy file another directory node.js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language