Description I have looked several places for a program that will anylize my hard drive and determine what the largest files on it are... I haven't yet been able to find one that is free for use, so I ended up making my own. I grabbed an open-source pie charting control from CodeGuru.Com and whipped it up reasonably quickly. It helps you anylize where the space on your hard-drive is going by listing out the sizes of each directory and file, as well as displaying the top ten file and directory sizes in a pie-chart.
Technology Features- Graph to display top 10 directories from your selection.
- Detailed grid/list of all directories/files and their sizes.
|
Comments
Though, I must report you a bug:
when selecting a directory that has no subdirectories (but that can have files), an exception is thrown. Here is - a part of - the stack trace (sorry, French install):
System.IndexOutOfRange Exception: L'index se trouve en dehors des limites du tableau.
à irectorySizer .Form1.UpdateDirectory Chart(List`1 directories)
à irectorySizer .Form1.startSizing()
à irectorySizer .Form1._btnGo_Click(Ob ject sender, EventArgs e)
…
I suspect you don't check that your dirs list can be empty in UpdateDirectory Chart… Quote