You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
3 years ago
|
const { join, resolve } = require('path');
|
||
|
const { readdirSync, statSync } = require('fs');
|
||
|
|
||
|
module.exports = function list(dir, callback, pre='') {
|
||
|
dir = resolve('.', dir);
|
||
|
let arr = readdirSync(dir);
|
||
|
let i=0, abs, stats;
|
||
|
for (; i < arr.length; i++) {
|
||
|
abs = join(dir, arr[i]);
|
||
|
stats = statSync(abs);
|
||
|
stats.isDirectory()
|
||
|
? list(abs, callback, join(pre, arr[i]))
|
||
|
: callback(join(pre, arr[i]), abs, stats);
|
||
|
}
|
||
|
}
|