Click here to Skip to main content
Click here to Skip to main content

Disk Usage Viewer

By , 3 Oct 2006
 

DiskUse example screen image

Introduction

This is a disk usage viewer, a tool that helps answer the question, "What is taking up all my disk space?" It displays a tree of folders (directories) starting from the specified folder, listing with each folder the size of all that it contains. Folders are listed in the order of decreasing size. The tree may be expanded to show layers below the topmost.

Background

The inspiration for this tool is the Unix disk usage tool du. The lack of a satisfying, equivalent, commonly-available tool for Windows prompted me to write this one.

Using the code

Using the tool is straightforward:

  1. Click Select, and choose the drive or folder to examine.
  2. Expand any folder in the displayed list to see the details of its contents.
  3. Use the Copy menu to save a text representation of the displayed tree, or to copy the path to the selected folder.

The generated text representation of the tree shown is:

11.9 G  C:
   + 4.16 G  Program Files
   + 2.65 G  Documents and Settings
   + 2.51 G  WINNT
   + 1.08 G  Matt
   + 68.4 M  My Music
   + 28.3 M  dell
   + 19.8 M  Recycled
   + 18.4 M  My Downloads
   + 10.3 M  VXIPNP
   + 1.12 M  samples
   |  + 1.12 M  VC98
   |     + 1.12 M  mfc
   |        + 846 K  ole
   |        |  + 846 K  wordpad
   |        |     + 27 K  res
   |        |     + 0 K  UniDebug
   |        + 275 K  general
   |           + 275 K  LISTHDR
   |              + 33 K  res
   |              + 0 K  Release
   + 1 K  cygwin
   + 0 K  WUTemp

The code recursively explores the folder structure below the selected root folder, and populates a Windows tree control accordingly. The application is a single document (SDI) MFC app generated by AppWizard, with a CTreeView used for the view class.

Most of the functionality is implemented in the CDiskUseView class, which has close access to its underlying tree control. Event handlers for the menu operations appear in the CMainFrame class.

Points of interest

A tree, such as a drive's folder structure, is inherently a recursive structure, so working with a tree is a natural application for recursive programming techniques. The function ScanDirectory sums the sizes of the files in a directory, and calls itself recursively to find the sizes of directories it contains. The function DisplaySubtree writes a text representation of one folder in the tree, and calls itself recursively for the levels below. And the function ExpandTreeLevel calls itself recursively to adjust the tree control view so that one, two, or all levels are visible.

For a problem such as this one, using recursion realizes the desired functionality with a very small amount of code. The recursive approach may initially seem confounding and confusing, but it's not difficult. This small program can serve as an example of how it is done.

Acknowledgment

Thanks to S. Sokolenko, whose GetFolder wrapper for SHBrowseForFolder saved me the effort of learning the details of that operation.

History

  • Oct. 3, 2006: Update to handle directory names that include a dot.
  • Sept. 26, 2006: Created.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Matt Fichtenbaum
Web Developer
United States United States
Member
Electrical engineer turned software engineer, working in automated test equipment development. Enjoy partitioning hardware/software systems into logical, coherent structures. Incorrigible builder of tools.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralIt's a very useful app for mememberraulcigil227 Sep '06 - 22:08 
It's a very useful app for me, thanks.
 
Raúl C.G.
AdeLanTec Soluciones Tecnológicas
mail@adelantec.net
www.adelantec.net


GeneralGreat!memberAnonymuos26 Sep '06 - 11:44 
Thanx for the handy tool. Additional bar charts would be nice ... Smile | :)
GeneralRe: Great!memberMatt Fichtenbaum29 Sep '06 - 1:58 
Interesting idea. Drawing a full bar chart would probably require "owner-drawing" the tree control, i.e., letting a callback draw everything associated with the tree item (text and graphics). But, for qualitative visual resolution only, one could create an image list with 10 to 20 different bar lengths and use the tree control's ability to display an image before each line's text (that's how Explorer draws the drive and folder icons, for example).

 
Matt

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 3 Oct 2006
Article Copyright 2006 by Matt Fichtenbaum
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid