文件操作 - utimes.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/fs-extra/lib/util/utimes.js
编辑文件内容
'use strict' const fs = require('../fs') const u = require('universalify').fromPromise async function utimesMillis (path, atime, mtime) { // if (!HAS_MILLIS_RES) return fs.utimes(path, atime, mtime, callback) const fd = await fs.open(path, 'r+') let closeErr = null try { await fs.futimes(fd, atime, mtime) } finally { try { await fs.close(fd) } catch (e) { closeErr = e } } if (closeErr) { throw closeErr } } function utimesMillisSync (path, atime, mtime) { const fd = fs.openSync(path, 'r+') fs.futimesSync(fd, atime, mtime) return fs.closeSync(fd) } module.exports = { utimesMillis: u(utimesMillis), utimesMillisSync }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件