windows command to get size of files in folder
top of page

windows command to get size of files in folder

It can take a while for Windows 10 to calculate the data size of the files in a single directory. You can use the following script in command prompt to get the total size more quickly:


powershell -noprofile -command "ls -r|measure -sum Length"

The command gives us the file count and the number of bytes, which is 409 MB. Powershell can be activated from command prompt.


Thanks to kaartic for this idea posted here.



Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page