Append data to a File using Nodejs
- brajesh

- Mar 18, 2021
- 1 min read

The fs.appendFile() method is used to asynchronously append the given data to a file. A new file is created if it does not exist.
Syntax:
fs.appendFile( path, data[, options], callback )Code
// Import the filesystem module
const fs = require("fs");
// Get the file contents before the append operation
fs.writeFile("read.txt","today is monday", (err) => {
console.log(" file is created")
console.log(err);
});
fs.appendFile('read.txt',"This is used for append text in to read.txt file", (err) => {
console.log("text appended");
});
// Get the file contents after the append operation
fs.readFile("read.txt","UTF-8",(err, data) =>{
console.log(data);
});Run Code
PS C:\node js\fsAsync> node index.jsOutput
today is monday:this is used for append text in to read.txt fileContact us for this nodejs assignment Solutions by Codersarts Specialist who can help you mentor and guide for such nodejs assignments.
If you have project or assignment files, You can send at contact@codersarts.com directly



Comments