首页 > 编程 > BAT > 正文

用批处理得到每个目录占用的空间

2020-07-26 20:32:15
字体:
来源:转载
供稿:网友
复制代码 代码如下:

@echo off
for /f "tokens=*" %%b in ('dir') do echo "%%b"|find "个文件">nul&&for /f "tokens=3*" %%c in ("%%b") do echo 当前目录 %%c %%d
for /f %%a in ('dir/ad/s/b') do for /f "tokens=*" %%b in ('"dir %%a/"') do echo "%%b"|find "个文件">nul&&for /f "tokens=3*" %%c in ("%%b") do echo %%a %%c %%d
pause
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表