2 Star 18 Fork 4

JackWhh/flow-cat-public

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util.js 288 Bytes
一键复制 编辑 原始数据 按行查看 历史
JackWhh 提交于 2022-11-18 18:03 . init
const {readdir} = require('fs').promises;
const getDirFileNum = async (dir) => {
const dirents = await readdir(dir, {withFileTypes: true});
return dirents.filter(e => {
return (e.isFile() && e.name.endsWith('.png'))
}).length;
}
module.exports={
getDirFileNum
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jack_whh/flow-cat-public.git
git@gitee.com:jack_whh/flow-cat-public.git
jack_whh
flow-cat-public
flow-cat-public
main

搜索帮助