📌  相关文章
📜  批处理如何检查文件夹是否为空 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:01.701000             🧑  作者: Mango

代码示例1
# BATCH HOW TO CHECK IF FOLDER IS EMPTY
for /F %%i in ('dir /b /a "folderpath\*"') do (
    echo if you see this the folder is NOT empty
)