xxxxxxxxxx
var fs = require('fs');
fs.open('mynewfile2.txt', 'w', function (err,
file) {
if (err) throw err;
console.log('Saved!');
});
xxxxxxxxxx
const fs = require('fs');
// Specify the file name and content
const fileName = 'example.txt';
const fileContent = 'This is the content of the file.';
// Create the file
fs.writeFile(fileName, fileContent, (err) => {
if (err) {
console.error('Error creating the file:', err);
} else {
console.log('File created successfully!');
}
});
xxxxxxxxxx
var imagePath = path.join('/images/logo.png', 'logo.png');
if (fs.statSync(imagePath)) {
var bitmap = fs.readFileSync(imagePath);
var bufferImage = new Buffer(bitmap);
Magic = mmm.Magic;
var magic = new Magic(mmm.MAGIC_MIME_TYPE);
magic.detectFile(imagePath, function(err, result) {
if (err) throw err;
datas = [{"buffer": bufferImage, "mimetype": result, "originalname": path.basename(imagePath)}];
var JsonDatas= JSON.parse(JSON.stringify(datas));
log.notice(JsonDatas);
});
}