To open file in write and read mode, // create file if doesn't exists. fs.open('demo.txt', 'w+', function (err, f) { if (err) { return console.error(err); } ...
確定! 回上一頁