walk.on(\'dir\', function (dir, stat) { uploadDir.push(dir); });
I am using Node, and i need make this function run everyday at midnight, this
There is a node package for this node-schedule.
node-schedule
You can do something like this:
var j = schedule.scheduleJob({hour: 00, minute: 00}, function(){ walk.on('dir', function (dir, stat) { uploadDir.push(dir); }); });
For more info, see here