gpt4 book ai didi

node.js - 如何在 NodeJS 中包含多个带有 'glob.sync' 的文件扩展名?

转载 作者:搜寻专家 更新时间:2023-10-31 22:18:13 44 4
gpt4 key购买 nike

谁能建议如何使用 glob.sync 方法添加多个文件扩展名。

类似于:

const glob = require('glob');
let files = glob.sync(path + '**/*.(html|xhtml)');

谢谢你:)

最佳答案

你可以使用这个(大多数 shell 也支持):

glob.sync(path + '**/*.{html,xhtml}')

或其中之一:

glob.sync(path + '**/*.+(html|xhtml)')
glob.sync(path + '**/*.@(html|xhtml)')

关于node.js - 如何在 NodeJS 中包含多个带有 'glob.sync' 的文件扩展名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43118216/

44 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com