1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
module.exports = fileCompletion
var mkdir = require("mkdirp")
, path = require("path")
, fs = require("graceful-fs")
, glob = require("glob")
function fileCompletion (root, req, depth, cb) {
if (typeof cb !== "function") cb = depth, depth = Infinity
mkdir(root, function (er) {
if (er) return cb(er)
// can be either exactly the req, or a descendent
var pattern = root + "/{" + req + "," + req + "/**/*}"
, opts = { mark: true, dot: true, maxDepth: depth }
glob(pattern, opts, function (er, files) {
if (er) return cb(er)
return cb(null, (files || []).map(function (f) {
return path.join(req, f.substr(root.length + 1)
.substr((f === req ? path.dirname(req)
: req).length)
.replace(/^\//, ""))
}))
})
})
}
|