Link to home
Start Free TrialLog in
Avatar of Mateen
Mateen

asked on

To view folders (not files) sizewise descending.

I have window professional 2000.

Suppose I am standing at folder d:\abc\xyz

In this folder say there are 100 more folders .

I want to view the folders size wise. Folder having greater disk space first.

Standing at a particular folder , Is it possible to view its folders sizewise descending.

Suppose d:\abc\xyz has a folder bcq, then it should calculate the size of bcq and all of its sub folders.
Avatar of Jay_Jay70
Jay_Jay70
Flag of Australia image

Hi SandyG,

only files not folders and thats on your right click menu and view - using explorer anywayz

Cheers!
ASKER CERTIFIED SOLUTION
Avatar of Steve Knight
Steve Knight
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You could do

dir c:\dirname /s | find /I "File(s)" and then the last number shown is the total size of dir & subdirs.
You'd need to repeat this for each directory ...

Steve
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Used that one too but didn't have a link with me.  Not as 'nice' as Treesize but does the job.