Node.js kullanarak bir Günlük dosyasına veri eklemeye çalışıyorum ve bu iyi çalışıyor ancak bir sonraki satıra gitmiyor. \n
aşağıdaki işlevimde çalışmıyor gibi görünüyor. Herhangi bir öneri?
function processInput ( text )
{
fs.open('H://log.txt', 'a', 666, function( e, id ) {
fs.write( id, text + "\n", null, 'utf8', function(){
fs.close(id, function(){
console.log('file is updated');
});
});
});
}
\r\n
mi ihtiyacınız var ?