Batch

Rob van der Woude has a nice batch script to get disk usage of folders & subfolders in Windows since there isn’t a built-in function.  This could be similar to Linux du command.  @ECHO OFF :: Use local variables IF “%OS%”==”Windows_NT” SETLOCAL :: Check command line arguments and Windows version ECHO.%1 | FIND “/” >NUL…

Read More Batch Script to get Disk Usage of Folders Recursively