Hello Developers,
In this tutorial, I will show you how to deal with the NodeJs fs.unlinkSync()
module synchronous way. First, you need to create a server using the HTTP
module. (NodeJs Server Related Tutorial)
If you are new at NodeJs development, this demonstration is for you. First, you need to initialize the node using the below command in a directory:
npm init --y
Then package.json will be created in the directory. Now we need to create the index.js file and an HTML file to use the fs.ununlinkSyncink()
module.
The package.json file will be like the below:
/package.json
{
"name": "fsmodule",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}
In our index.js file, first, we created a server and we have to call the fs module to work with File System. After that, we called fs.unlinkSync()
the method we have to give the file name. We have written some code to get the response of whether the file was deleted or not. The source code is given below:
/index.js
var fs = require('fs');
var http = require('http');
var server = http.createServer(function (req, res) {
if (req.url == "/") {
var error = fs.unlinkSync('demo.txt');
if (error) {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.write('File Delete Failed');
res.end();
} else {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.write('File Delete Success');
res.end();
}
}
});
server.listen(5000);
console.log('Server running Successfully');
Now run npm start in the terminal.
npm start
The File has been deleted if the demo.txt exists in the directory.
Hope this might help you in the development journey.
Read More: Working with NodeJs fs.writeFileSync() function using synchronous way