Node.js – How to get File Size in KB, MB and GB
In this tutorial we will see how to get file size in different formats like bytes, KB, MB & GB in Node.js. To get size… Read More »Node.js – How to get File Size in KB, MB and GB
In this tutorial we will see how to get file size in different formats like bytes, KB, MB & GB in Node.js. To get size… Read More »Node.js – How to get File Size in KB, MB and GB
In this tutorial, we will learn how to rename a directory in Node.js. Node.js provides a built-in module named fs which helps in working with… Read More »Node.js – How to rename a Directory | Folder
The fs module function fs.rmdir() removes a specified directory, it can be used recursively to remove multiple nested directories. In the previous tutorial we saw… Read More »Node.js – How to Remove or Delete Directory | fs.rmdir()
Node.js – Create a new directory: The inbuilt fs module in Node.js helps us to handle file and folders related operations. In the previous tutorial… Read More »Node.js – How to create Directory | fs.mkdir()