文件操作 - index.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/path-type/index.d.ts
编辑文件内容
export type PathTypeFunction = (path: string) => Promise<boolean>; /** Check whether the passed `path` is a file. @param path - The path to check. @returns Whether the `path` is a file. */ export const isFile: PathTypeFunction; /** Check whether the passed `path` is a directory. @param path - The path to check. @returns Whether the `path` is a directory. */ export const isDirectory: PathTypeFunction; /** Check whether the passed `path` is a symlink. @param path - The path to check. @returns Whether the `path` is a symlink. */ export const isSymlink: PathTypeFunction; export type PathTypeSyncFunction = (path: string) => boolean; /** Synchronously check whether the passed `path` is a file. @param path - The path to check. @returns Whether the `path` is a file. */ export const isFileSync: PathTypeSyncFunction; /** Synchronously check whether the passed `path` is a directory. @param path - The path to check. @returns Whether the `path` is a directory. */ export const isDirectorySync: PathTypeSyncFunction; /** Synchronously check whether the passed `path` is a symlink. @param path - The path to check. @returns Whether the `path` is a directory. */ export const isSymlinkSync: PathTypeSyncFunction;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件