文件操作 - index.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/nodejs/read-pkg/index.js
编辑文件内容
'use strict'; const {promisify} = require('util'); const fs = require('fs'); const path = require('path'); const parseJson = require('parse-json'); const readFileAsync = promisify(fs.readFile); module.exports = async options => { options = { cwd: process.cwd(), normalize: true, ...options }; const filePath = path.resolve(options.cwd, 'package.json'); const json = parseJson(await readFileAsync(filePath, 'utf8')); if (options.normalize) { require('normalize-package-data')(json); } return json; }; module.exports.sync = options => { options = { cwd: process.cwd(), normalize: true, ...options }; const filePath = path.resolve(options.cwd, 'package.json'); const json = parseJson(fs.readFileSync(filePath, 'utf8')); if (options.normalize) { require('normalize-package-data')(json); } return json; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件