Answers for "check file size nodejs"

1

nodejs get file size

var fs = require("fs"); //Load the filesystem module
var stats = fs.statSync("myfile.txt")
var fileSizeInBytes = stats["size"]
//Convert the file size to megabytes (optional)
var fileSizeInMegabytes = fileSizeInBytes / 1000000.0
Posted by: Guest on August-06-2020
1

how to get file size in node js

var fs = require("fs"); //Load the filesystem module
var stats = fs.statSync("myfile.txt")
var fileSizeInBytes = stats.size;
// Convert the file size to megabytes (optional)
var fileSizeInMegabytes = fileSizeInBytes / (1024*1024);
Posted by: Guest on April-09-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language