这是我想做的事情:
stream = fs.WriteStream('crap.txt',{flags:'w'};
// more code
response.on('close',function() {
// is the below line possible?
fs.stat(stream.name, function(stats) {
console.log(stats.size);
});
stream.end();
});
那么我可以从流对象中获取文件名吗?一个有插图的例子会很好,参考关于可写流的好的教程/文档(包含例子)。