Finding out what folders and files take the most space on a Windows computer?

11,842

Solution 1

1) You can try WinDirStat: http://windirstat.info/

2) I don't think you need open source tools, you could write it in Java or .NET just by using what is already provided with the languages.

Solution 2

Yes there are plenty of them. For example check out these..

Share:
11,842
algorithmicCoder
Author by

algorithmicCoder

Updated on June 04, 2022

Comments

  • algorithmicCoder
    algorithmicCoder almost 2 years

    1) What good software out there already exists that allows one (preferably visually) see what folders and files are taking the most space on one's computer (Windows Vista compatible)

    2) Say I wanted to write a this program myself, what opensource tools out there can I use to get started?

    Thanks!

    • David Heffernan
      David Heffernan almost 13 years
      I've always used JDiskReport
  • algorithmicCoder
    algorithmicCoder almost 13 years
    Thanks!...what key libraries in Java would be helpful?
  • Sitnik
    Sitnik almost 13 years
    You could use the default java.io.* namespace. Or if you want a library, the IO part of the Apache Commons lib can help you, check the FileUtils class (it has a sizeOfDirectory method) at commons.apache.org/io/api-release/index.html