Home Software Engineering How one can copy recordsdata and folders in Node.js? | by Sabesan Sathananthan

How one can copy recordsdata and folders in Node.js? | by Sabesan Sathananthan

0
How one can copy recordsdata and folders in Node.js? | by Sabesan Sathananthan

[ad_1]

A number of methods to repeat recordsdata in Node.js

Picture by Dziana Hasanbekava

In Node.js, there are a number of methods to repeat recordsdata., let’s check out the doable methods and evaluation every of them. That is my forty fourth Medium article.

The copyFile() operate, which might copy a file on to the vacation spot listing, performs the only motion.

fs.copyFile('./information.txt', './dest/information.txt');

The above technique, asynchronously copies the file from src to dest. If dest is already exists then by default it’s overwritten. There are not any args handed to the callback operate over than any doable exception. Node.js doesn’t be certain that copy operations are atomic. Node.js will try and delete the goal file if an error occurs after opening the goal file for writing.

There’s a drawback once we use the above technique. If the goal listing doesn’t exist then an exception will likely be thrown as a result of the goal listing should exist (the tactic won’t routinely create the goal listing). Subsequently, earlier than utilizing the above technique, consumer should validate whether or not the goal listing definetly exists or not? If the goal listing doesn’t exists, consumer may use fs.mkdir()or fs.mkdirSync()to create the goal listing. copyFile() technique can’t copy directories.

[ad_2]