匹配对应规则的文件

    1. npm install glob
    1. const glob = require("glob")
    2. console.time('async')
    3. const result = glob(__dirname + '/**/*', function (err, result) {
    4. console.log(result.length)
    5. })
    6. console.timeEnd('async')
    7. // options 是可选的
    8. glob("**/*.js", options, function (er, files) {
    9. // files 是匹配到的文件的数组.
    10. // 如果 `nonull` 选项被设置为true, 而且没有找到任何文件,那么files就是glob规则本身,而不是空数组
    11. // er是当寻找的过程中遇的错误
    12. })

    https://www.cnblogs.com/liulangmao/p/4552339.html