5

这是我想做的事情:

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

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

4

1 回答 1

10

这是fs.createWriteStreamstream.path

你可以console.dir(stream)找到它的所有属性

于 2013-04-16T00:16:36.763 回答