我想发送给客户端文件名和文件创建日期,我尝试使用提供生日的fs.stat,但是我没有在其中看到文件名,所以我的问题是文件创建日期是生日吗?

如何发送创建为json的文件名和日期?

app.js

var readDirectory = require('./readDirectory');
app.get('/logs',function(req,res){
    readDirectory.readDirectory(function(logFiles){
        res.json(logFiles);
    });
});


readDirectory.js

var fs = require('fs');
var path = './logs/ditLogs'
function readDirectory(callback){
    fs.stat(path, function (err,stats) {
        console.log('STATS',stats);
        callback(stats);
    });

}
exports.readDirectory = readDirectory;

最佳答案

Node v0.12.0中,是birthtime是文件创建时间

检查Node.js API详细信息here

07-21 15:04