如何从writeStream获取文件名?

时间:2013-04-16 00:09:33

标签: javascript node.js stream

这是我想要做的:

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();
});

那么我可以从流对象中获取文件名吗?一个插图示例很好,参考可写流上的好教程/文档(包含示例)。

1 个答案:

答案 0 :(得分:4)

fs.createWriteStreamstream.path

您可以console.dir(stream)查找其所有属性