Forum Discussion
Frederickk
Dec 06, 2024Iron Contributor
Is there a way to display size of a folder?
- Jan 28, 2025
Click the View tab at the top and choose Details. This will show file size information.
Xioun
Feb 13, 2025Copper Contributor
Using PowerShell:
- Open PowerShell as an administrator.
- Navigate to the folder you want to check using the cd command (for example, cd C:\Users\YourUsername\Documents).
- Run the command Get-ChildItem -Recurse | Measure-Object -Property Length -Sum to display the total size of all files in the current folder and its subfolders.