I am trying to get the path of the file that I am writing as below. help me with code how to get the path from the below function.
I need the file path as the return variable. I am passing a number as barcodeSourceNumber.
pathToFile = build_barcode('123456789');
function build_barcode(barcodeSourceNumber) {
var pngFileName;
const bwipjs = require('bwip-js');
bwipjs.toBuffer({
bcid: 'code128', // Barcode type
text: barcodeSourceNumber, // Text to encode
scale: 3, // 3x scaling factor
height: 10, // Bar height, in millimeters
includetext: false, // Show human-readable text
textxalign: 'center', // Always good to set this
}, function (err, png) {
var pngFileName = = barcodeSourceNumber + '.png';
fs.writeFileSync(pngFileName, png);
});
return pngFileName;
}
But I am getting '.' or undefined as the return value when I try to call the function.
This is what I would suggest you do:
Changes:
bwipjs.toBuffer()
to make it simpler to communicate back asynchronous resultfs.promises.writeFile()
since we're already using promises and are already asynchronousrequire()
out of the asynchronous flow, since it's blockingasync
for the function so we can useawait
and more simply sequence multiple asynchronous operations.path.resolve()
to get the full, absolute path from our filename.build_barcode()
return a promise so we can more easily communicate back the filename at the end of several asynchronous operations.path.dirname()
on the whole pathname to get just the directory.