Can anybody kindly provide me a batch file script to view the list of folder with their size in a specific drive. Just as "DIRUSE" does!

::contents of checkdir.bat
DIRUSE /M c:\foldername > dirinfo.log
::end of file:: mike
tonysathre: Untested:
Happy to help? Or is that "help?" I can never remember.c:\>forfiles /p c:\ /c "cmd /c if @isdir==TRUE echo @fsize" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
:: ===== script starts here ===============
:: chk size of folder
:: supro.bat 2013-01-17 16:21:19.18
@echo off & setLocal enableDELAYedeXpansioNset N=
pushd d:\files
for /f "tokens=* delims= " %%a in ('dir/b/a-d') do (
set /a N+=%%~Za
)
echo !N!
::====== script ends here ======================================
M2 Golden-Triangle
