luomo
v1.1.0
Published
a library for node.js project to handle file path and operated.
Downloads
7
Readme
Luomo
Luomo(萝藦) ,一个用于nodejs平台,查找本机目录结构及文件操作的工具库
特性
本工具库基于graceful-fs
库作为基础。
安装
npm i -S luomo
API
创建
copyDir()
复制目录中的文件
copyDir(src:string, dest:string, opt:any = {}):Promise<boolean | Error>
创建目录
createDir(dirPath:string):Promise<boolean | Error>
删除
deleteDir()
删除目录
deleteFile()
删除文件
读写
readFile()
读取文件
writeFile()
写入数据到文件
遍历
lsDir()
列出目录中得所有文件和目录信息
{
type: 'file', // file || dir || other
name: '.editorconfig', // file name
link: '', // file or dir name
ext: '' // ext
}