最佳答案
I can't find more about fs.close explain in nodejs API. I want to know what the scenario call fs.close is necessary. for example:
var fs = require('fs'); fs.writeFile("/home/a.tex","abc"); or like fs.appendFile("/home/a.tex","close") fs.close(); //is it necessary?
Are there any effects if i don't call fs.close?
Any help is appreciated.