“Escribir archivos en Node.js” Código de respuesta

Escribir archivos en Node.js

const fs = require('fs');

fs.writeFile("/tmp/test", "Hey there!", function(err) {
    if(err) {
        return console.log(err);
    }
    console.log("The file was saved!");
}); 

// Or
fs.writeFileSync('/tmp/test-sync', 'Hey there!');
Jeff Spicoli

WriteFile en el nodo JS

// append_file.js

const fs = require('fs');

// add a line to a lyric file, using appendFile
fs.appendFile('empirestate.txt', '\nRight there up on Broadway', (err) => {
    if (err) throw err;
    console.log('The lyrics were updated!');
});
Testy Tamarin

Escribir archivos en Node.js

var fs = require('fs');  
var txt = '\n' + tkn_psid_id + ':' + assetUrl;
var folderName = '/duplicates/bugging/videobug/' + tkn_psid_id + '.txt';
fs.appendFile(folderName, txt, function (err) {
       if (err) {
                console.log('Append Error');
           } else {
                   console.log('DuplicateFolder' + folder);
            }
      });
Wassi

Respuestas similares a “Escribir archivos en Node.js”

Preguntas similares a “Escribir archivos en Node.js”

Más respuestas relacionadas con “Escribir archivos en Node.js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código