• Stars
    star
    148
  • Rank 249,983 (Top 5 %)
  • Language
    JavaScript
  • License
    Other
  • Created over 11 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

列出(遍历)目录下的所有文件,包括子目录

NPM version build status Test coverage David deps node version npm download npm license

rd

列出(遍历)目录下的所有文件,包括子目录(支持 TypeScript)

安装

npm install rd --save

API列表

说明:

  • read 开头表示返回数组结果
  • each 开头表示每发现一个文件均调用回调函数 findOne
  • Sync 结尾表示是同步函数,其他表示异步函数

可用的API(详细用法可参考 test/test.js ):

  • read(dir, [threads], callback)
  • readFilter(dir, pattern, [threads], callback)
  • readFile(dir, [threads], callback)
  • readFileFilter(dir, pattern, [threads], callback)
  • readDir(dir, [threads], callback)
  • readDirFilter(dir, pattern, [threads], callback)
  • each(dir, findOne, [threads], callback)
  • eachFilter(dir, pattern, [threads], findOne, callback)
  • eachFile(dir, [threads], findOne, callback)
  • eachFileFilter(dir, pattern, [threads], findOne, callback)
  • eachDir(dir, [threads], findOne, callback)
  • eachDirFilter(dir, pattern, [threads], findOne, callback)

说明:

  • 以上所有函数均提供同步版本,如 read 对应的同步版本为 readSync;相应的 callback 改为直接 return 返回值;
  • threads 参数表示并发数量,为可选参数,默认为1;同步版本没有此参数;

findOne 回调函数格式:

function findOne(filename, stats) {
  // filename 是当前文件的完整路径
  // stats 是使用 fs.Stats 对象
}

callback 回调函数格式:

function callback(err, list) {
  // 如果出错,err为出错信息
  // each系列函数没有list参数
  // read系列函数list为完整文件名的列表
}

pattern 参数格式:

  • 正则表达式
  • 函数
function pattern(filename) {
  // filename 是当前文件的完整路径
  // 返回 true 表示该文件名符合条件
}

简单示例

var rd = require('rd');

// 异步列出目录下的所有文件
rd.read('/tmp', function (err, files) {
  if (err) throw err;
  // files是一个数组,里面是目录/tmp目录下的所有文件(包括子目录)
});

// 同步列出目录下的所有文件
var files = rd.readSync('/tmp');

// 异步遍历目录下的所有文件
rd.each('/tmp', function (f, s, next) {
  // 每找到一个文件都会调用一次此函数
  // 参数s是通过 fs.stat() 获取到的文件属性值
  console.log('file: %s', f);
  // 必须调用next()才能继续
  next();
}, function (err) {
  if (err) throw err;
  // 完成
});

// 同步遍历目录下的所有文件
rd.eachSync('/tmp', function (f, s) {
  // 每找到一个文件都会调用一次此函数
  // 参数s是通过 fs.stat() 获取到的文件属性值
  console.log('file: %s', f);
});

// 同步遍历目录下的所有js文件
rd.eachFileFilterSync('/path', /\.js$/, function (f, s) {
  console.log(f);
});

License

Copyright (c) 2013-2018 Zongmin Lei <[email protected]>
http://ucdok.com

The MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

js-xss

Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist
HTML
5,037
star
2

node-segment

基于Node.js的中文分词模块
JavaScript
1,174
star
3

node-doc-cn

Node.js中文文档
JavaScript
174
star
4

book-crawler-mysql-cron

爬虫,MySQL,定时任务
JavaScript
156
star
5

node-lei-stream

Read/Write stream line by line 按行读写流
JavaScript
99
star
6

book-nodejs-in-action-season-2

《Node.js实战 第二季》示例代码
JavaScript
65
star
7

programmer-calendar

命令行版程序员老黄历
JavaScript
65
star
8

tinyliquid

A Liquid syntax template engine.
JavaScript
63
star
9

vscode-node-module-intellisense

Visual Studio Code plugin that autocompletes JavaScript / TypeScript modules in import statements.
TypeScript
62
star
10

huobiapi

火币网API Go客户端
Go
60
star
11

QuickWeb

快速搭建基于Nodejs的Web运行环境
JavaScript
58
star
12

clouds

lightweight microservices framework, simple to call remote functions 轻量级微服务框架
JavaScript
58
star
13

jssh

一款使用JS编写命令行小工具的神器
C
54
star
14

qchat

基于QuickWeb + socket.io的聊天室
JavaScript
45
star
15

bamei

JavaScript
44
star
16

leizm-web

现代的 Web 中间件基础框架,完美支持 TypeScript,构建可维护的大型 Web 项目
TypeScript
42
star
17

node-umeditor-qiniu

支持上传图片到七牛的百度UMeditor编辑器
JavaScript
31
star
18

leiphp

轻量级的 PHP MVC 框架 Lightweight MVC framework for simplistic PHP apps
PHP
30
star
19

js-css-filter

CSS白名单过滤器
JavaScript
27
star
20

htmlstream-rust

Lightweight HTML parser
Rust
23
star
21

leizm-utils

一些常用的工具函数
JavaScript
20
star
22

tora

运维部署系统,包括文件传输、命令执行、日志监控等模块
Go
19
star
23

tcp-tunnel

TCP tunnel server & client, multi-user support
JavaScript
18
star
24

docker-shadowsocks

Shadowsocks server docker image.
Shell
17
star
25

node-lei-udp

可靠的UDP传输模块
JavaScript
17
star
26

practice-node-project

Node.js项目实战
JavaScript
16
star
27

simpledb

NoSQL embedded database on top of RocksDB.
Rust
16
star
28

MQTTClient

JavaScript
16
star
29

node-lei-download

用于从网络下载文件或复制本地文件,具有自动分配临时文件名和进度通知功能
JavaScript
15
star
30

express-liquid

Using TinyLiquid in Express 3.x
JavaScript
15
star
31

luckypg

Lucky Programmer 给程序员带来好运的小工具
Go
15
star
32

node-lei-proto

简单的Buffer编码/解析模块
JavaScript
14
star
33

eslint-config-lei

eslint-config 配置
JavaScript
12
star
34

vscode-quick-open

Visual Studio Code plugin that provide a quick open file command
TypeScript
11
star
35

hojs

轻量级 RESTful API 服务器框架
JavaScript
11
star
36

writing-os-in-rust

学习用Rust写一个操作系统
Rust
10
star
37

nodejs-web-project-best-practice

Node.js Web 项目结构最佳实践
JavaScript
9
star
38

go

我的Go语言公共库
Go
8
star
39

url-forwarding

HTTP转发服务,解决国内主机不能绑定未备案问题,可将域名解析到该服务器,然后重定向到国内IP
JavaScript
8
star
40

taskmanager

基于Node.js的任务管理器,可通过插件形式来实现管理(包括启动、状态监控等)不同类型的Node.js文件
JavaScript
7
star
41

gogo

简单易用的Go包管理工具
Go
7
star
42

serverless-sqlite

Serverless SQLite database read from and write to Object Storage Service, run on FaaS platform.
C++
7
star
43

node-lei-crawler

简单爬虫工具
JavaScript
7
star
44

simple-http-server-in-java

使用Java编写的简单HTTP服务器
Java
7
star
45

node-project-core

JavaScript
7
star
46

lei-dev-server

npm install lei-dev-server -g 简单的前端开发服务器
TypeScript
7
star
47

newos

A Linux kernel based operating system
Makefile
6
star
48

study-rust-osdev

学习Rust编写操作系统内核
Rust
6
star
49

node-web-installer

基于Node.js的Web应用安装器,让小白用户可以通过简单的Web界面来完成应用的初始化配置
JavaScript
6
star
50

lei-deploy

通过pm2和git来管理代码部署
JavaScript
5
star
51

node-weibo-sdk

JavaScript
5
star
52

connect-limit-requests

防止恶意刷新攻击 connect中间件
JavaScript
5
star
53

leizm-html-parser

Fast HTML parser written in pure JavaScript
HTML
5
star
54

HttpRequest

NodeJs HttpRequest模块
JavaScript
4
star
55

lei-coroutine

简单的 coroutine 库
JavaScript
4
star
56

leizm-sql

SQL查询构造器
TypeScript
4
star
57

html5-canvas-box-drag-resize-demo

基于 HTML5 Canvas 实现的对象多拽缩放实验代码
TypeScript
4
star
58

lei-theme-vscode

Lei's best theme for VSCode
4
star
59

node-lei-mysql

Simple MySQL Pool
JavaScript
4
star
60

imbot

an IM Bot modules for NodeJs, use bot.im API.
JavaScript
4
star
61

leizm-async-cache-getter

异步获得数据,保证同一时间多个相同的请求只会实际执行一个
TypeScript
4
star
62

PlayWithCompiler

极客时间《编译原理之美》课程练习
Go
4
star
63

leizm-http-proxy

一个简单灵活的 HTTP 代理服务器
TypeScript
4
star
64

lei-php-cgi

简单的PHP-CGI中间件,实现在connect/express中执行php脚本
JavaScript
4
star
65

js-bright

一种更优雅的JavaScript异步流程控制方式。
JavaScript
3
star
66

toy-docker

写一个玩具Docker玩玩
JavaScript
3
star
67

peento

一个简单的博客系统,模块化、主题与程序分离,像Wordpress那样灵活
JavaScript
3
star
68

taskcloud

taskcloud
JavaScript
3
star
69

leizm-benchmark

简单性能测试框架
TypeScript
3
star
70

go-websocket-examples

Go语言WebSocket使用例子
Go
3
star
71

fuser

Find the Process That is Using a File in Linux
Go
3
star
72

node-lei-config

根据环境变量加载配置文件
JavaScript
3
star
73

query-tool

快速查询工具
JavaScript
3
star
74

express-router-async-support

async function support for express.Router
JavaScript
3
star
75

nodejs-accuracy-time

高精度时间相关模块
TypeScript
3
star
76

os-in-c-example

操作系统内核练习
C
3
star
77

simple-file-transfer-tools

简单文件传输工具
TypeScript
3
star
78

leizm-cache

高性能缓存管理器,支持 Redis、Memcached 和内存存储
TypeScript
3
star
79

node-lei-onepage

基于Node.js的单页面应用框架
JavaScript
3
star
80

leizm-mysql

基于 Node.js/TypeScript 的 MySQL 连接管理器
TypeScript
3
star
81

node-lei-hot

Node.js代码热更新方案
JavaScript
2
star
82

api-proxy

API代理服务器
JavaScript
2
star
83

the-eyuyan-dot-fly-examples

我用过的易语言
2
star
84

node-lei-ns

Organizing your code without writing wired variable constructs and helper objects
JavaScript
2
star
85

yedda

简单限流计数服务
Go
2
star
86

xss.rs

Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist.
Rust
2
star
87

weixin-api

个人版微信API
JavaScript
2
star
88

go-utils

私人订制 Go 语言工具函数库
Go
2
star
89

clouds-benchmark

clouds模块性能测试
JavaScript
2
star
90

random-chat

随机聊天
JavaScript
2
star
91

holyhi

state management library for React that very easy to use
TypeScript
1
star
92

dev-clean

Free up developer disk space.
Go
1
star
93

leizm-logger

简单日志记录器
TypeScript
1
star
94

node-lei-cycle

循环返回指定数组中的一个元素
JavaScript
1
star
95

taskcloud-node

The taskcloud node
JavaScript
1
star
96

node-file-lookup

指定一组目录,依次搜索指定文件(相对路径),返回其绝对文件路径,支持同步和异步方法
JavaScript
1
star
97

nodejs-distributed-modules

Node.js分布式应用相关模块
TypeScript
1
star
98

leisp

Leisp is a Lisp-Like programming language
Go
1
star
99

nodejs.ucdok.com

《Node.js 实战》读者反馈网站
HTML
1
star
100

bright-flow

JavaScript流程控制库
JavaScript
1
star