• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

tests/H03-May-2022-5033

Messages.shH A D27-Feb-202274 42

READMEH A D27-Feb-20221.1 KiB3023

fsview.cppH A D27-Feb-202215.6 KiB580462

fsview.desktopH A D27-Feb-20227 KiB135134

fsview.hH A D27-Feb-20223 KiB14894

fsview_part.cppH A D27-Feb-202218.1 KiB562430

fsview_part.desktop.inH A D27-Feb-20229.2 KiB137135

fsview_part.hH A D27-Feb-20222.7 KiB13592

fsview_part.rcH A D27-Feb-2022945 3837

inode.cppH A D27-Feb-20228.2 KiB399307

inode.hH A D27-Feb-20222 KiB9761

main.cppH A D27-Feb-20221.6 KiB5436

scan.cppH A D27-Feb-20228.4 KiB426333

scan.hH A D27-Feb-20225.7 KiB283178

treemap.cppH A D27-Feb-202295.3 KiB3,6242,920

treemap.hH A D27-Feb-202223.7 KiB889475

README

1What's this?
2============
3
4Josef Weidendorfer
5Josef.Weidendorfer@gmx.de
6
7FSView is a tool for showing disc utilization in a graphical form, much
8like the UNIX command 'du'. The visualisation type choosen is a treemap.
9Treemaps allow for showing metrics of objects in nested structures, like
10sizes of files and directories on your hard disc, where the size of
11directories is defined to be the sum of the size of its children.
12Each object is represented by a rectangle which area is proportional to
13its metric. The metric must have the property that the sum of the
14children's metric of some object is equal or smaller than the objects
15metric. This holds true for the file/directory sizes in the use case of
16FSView.
17
18It's provided both as a Konqueror KPart plugin for the mime type
19inode/directory, and a standalone executable.
20
21This was meant as a small test application and usage tutorial for
22the TreeMap widget developed within KCachegrind. As it's quite cool
23and small, it is now provided as a Konqueror addon in KDE.
24
25For a full featured graphical 'du', see KDirStat. It's quite similar
26to FSView, but allows for lot of cleanup actions.
27
28Happy space hunting,
29Josef
30