[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[系统相关] BAT脚本批量当前目录下的的文件夹大小怎么记录数据到一个文本内?

这个bat 批量当前目录下的的文件夹大小怎么 记录数据到一个文本内?
  1. @echo off
  2. REM setlocal enabledelayedexpansion
  3. cd /d "%~dp0"
  4. for /f "delims=" %%a in ('dir /b /ad') do (
  5.     set /p =%%a: <nul
  6.     powershell -c "(Get-ChildItem -Path '%%a' -Force -Recurse -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).Sum"
  7. )
  8. pause
复制代码

  1. @echo off
  2. REM setlocal enabledelayedexpansion
  3. cd /d "%~dp0"
  4. (for /f "delims=" %%a in ('dir /b /ad') do (
  5.     set /p =%%a: <nul
  6.     powershell -c "(Get-ChildItem -Path '%%a' -Force -Recurse -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).Sum"
  7. ))>1.txt
复制代码
输出结果到1.txt文档中

TOP

回复 2# hfxiang


    谢谢

TOP

返回列表