NodeJs ile dosya açmak?
Oluşturmuş olduğum excel dosyasını Microsoft Office Excel ile görüntülemek istiyorum.
İnternette araştırmam sonucu bulduğum kod. Fakat çalışmadı...
function ExceleKaydet() {
fs.open(__dirname + "\\ExcelDosyası.xlsx", 'r', function (err, file) {
if (err) throw err;
console.log(__dirname + "\\ExcelDosyası.xlsx");
});
}
Sorunun çözümünü buldum...
var cp = require('child_process');
cp.exec(__dirname + "\\ExcelDosyası.xlsx", function (err, stdout, stderr) {
// handle err, stdout, stderr
});