文件操作 - conpty_console_list_agent.ts
返回文件管理
返回主菜单
删除本文件
文件: /root/node_modules/node-pty/src/conpty_console_list_agent.ts
编辑文件内容
/** * Copyright (c) 2019, Microsoft Corporation (MIT License). * * This module fetches the console process list for a particular PID. It must be * called from a different process (child_process.fork) as there can only be a * single console attached to a process. */ let getConsoleProcessList: any; try { getConsoleProcessList = require('../build/Release/conpty_console_list.node').getConsoleProcessList; } catch (err) { getConsoleProcessList = require('../build/Debug/conpty_console_list.node').getConsoleProcessList; } const shellPid = parseInt(process.argv[2], 10); const consoleProcessList = getConsoleProcessList(shellPid); process.send({ consoleProcessList }); process.exit(0);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件