文件操作 - utils.ts
返回文件管理
返回主菜单
删除本文件
文件: /root/node_modules/node-pty/src/utils.ts
编辑文件内容
/** * Copyright (c) 2017, Daniel Imms (MIT License). * Copyright (c) 2018, Microsoft Corporation (MIT License). */ export function assign(target: any, ...sources: any[]): any { sources.forEach(source => Object.keys(source).forEach(key => target[key] = source[key])); return target; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件