如何用dos命令 获取一个目录下的文件数目

2024-11-25 21:54:47
推荐回答(1个)
回答1:

1. 仅统计文件数量
dir /b /a-d | find /v /c "&#@"

2. 统计文件和目录总数量

dir /b | find /v /c "&#@"