Skip to content

Instantly share code, notes, and snippets.

@piaoger
Created August 24, 2015 03:40
Show Gist options
  • Save piaoger/0bfdda8fbe3ce9dfdd4f to your computer and use it in GitHub Desktop.
Save piaoger/0bfdda8fbe3ce9dfdd4f to your computer and use it in GitHub Desktop.
Set file time in node.js
// set file add/mode time
var fs = require('fs')
function setFileTime(filePath, atime, mtime) {
fs.utimesSync(filePath, atime, mtime);
}
var date = new Date('Thu Aug 20 2015 15:10:36 GMT+0800 (CST)');
setFileTime('/tmp/scache/fdf/admin.log', date, date);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment