2

我想根据数据创建文件。如果文件存在今天的日期,那么它一定不能创建文件。我已经写了一些代码

 path.exists('./LOG/BAlDate-Info' +Date()+'.txt', function(exists) {
    if (!exists) {
        fs.writeFile('./LOG/BALDate-Info' +Date()+'.txt',"BAl-Employee  is called  @  "+    Date(),function(err){
            if(err){
                console.log("error is: " + err)
            }
            else
                console.log("no error found");
        });
    }
});

在这种情况下,每次我运行此代码时,它都会创建文件,但我只想创建今天日期的单个文件。在这种情况下请帮助我

4

1 回答 1

7

一种选择是像这样命名您的日志文件:

var now = new Date();
var logfile_name = './LOG/BALDate-Info-' + now.getFullYear() + "-"+ now.getMonth() + "-" + now.getDate() +'.txt'

你的文件应该看起来像'./LOG/BALDate-Info-2018-4-12.txt'

于 2013-05-14T06:50:51.707 回答