文件名称:node-file-lister:节点模块列出文件夹中的文件
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-14 02:54:54
JavaScript
文件列表器 使用 Node.js 列出目录中的简单文件。 例子 var listFiles = require ( 'file-lister' ) ; listFiles ( [ "folder1" , "/my/favorite/folder/" ] , function ( error , files ) { if ( error ) { console . log ( error ) ; } else { console . log ( files . join ( "\n" ) ) ; } } ) ; 哪个输出 /absolute/path/to/folder1/file1 /absolute/path/to/folder1/file2 /absolute/path/to/folder1/another/folder/f
【文件预览】:
node-file-lister-master
----.gitignore(587B)
----package.json(624B)
----index.js(2KB)
----README.md(1KB)