WinDirStat is a disk usage statistics viewer

WinDirStat is a disk usage statistics viewer and cleanup tool for various versions of Microsoft Windows.
Note: if you are looking for an alternative for Linux, you are looking for KDirStat (apt-get install kdirstat on Debian-derivatives) and for MacOS X it would be Disk Inventory X or GrandPerspective.

Please visit the WinDirStat blog for more up-to-date information about the program.

On start up, it reads the whole directory tree once and then presents it in three useful views:

  • The directory list, which resembles the tree view of the Windows Explorer but is sorted by file/subtree size,
  • The treemap, which shows the whole contents of the directory tree straight away,
  • The extension list, which serves as a legend and shows statistics about the file types.

The treemap represents each file as a colored rectangle, the area of which is proportional to the file‘s size. The rectangles are arranged in such a way, that directories again make up rectangles, which contain all their files and subdirectories. So their area is proportional to the size of the subtrees. The color of a rectangle indicates the type of the file, as shown in the extension list. The cushion shading additionally brings out the directory structure

https://windirstat.info/

WinDirStat is a disk usage statistics viewer

时间: 2024-08-01 16:10:24

WinDirStat is a disk usage statistics viewer的相关文章

Windows 8 Disk Usage Keep up 100%

Recently i find the windows8 Disk Usage always keep up 100%, It must be have some issue. Step1. Go into Open Task Manager Step2. Go to Details tab Step3. Right click the columns headers and click "Select Columns" Step4. From the "Select Col

启动myeclipse弹窗Please allow Subclipse team to receive anonymous usage statistics for this Eclipse intance

Please allow Subclipse team to receive anonymous usage statistics for this Eclipse intance(翻译:请允许Subclipse团队接受这个匿名使用统计) 解决方法: Windows-->Preferences-->General-->Startup and Shutdown-->取消Subclipse Usage Reporting 的勾选.

du -- disk usage

du的英文为:disk usage,含义是磁盘空间使用情况,功能是逐级进入指定目录的每一个子目录并显示该目录占用文件系统数据块的情况,如果没有指定目录,则对当前的目录进行统计. 面对对象时目录文件,而不是其他普通文件 NAME       du - estimate file space usage SYNOPSIS       du [OPTION]... [FILE]...       du [OPTION]... --files0-from=F DESCRIPTION       Summ

Please allow Subclipse team to receive anonymous usage statistics for this Eclipse intance(info)

本文转载自:http://blog.csdn.net/myfxx/article/details/21096949 今天在用eclipse启动项目的时候发现了一个问题,就是每次启动项目的时候,eclipse都会弹出一个Subclipse Usage的弹框,很是让人觉得不爽,那么这个框是什么意思呢,我们又如何取消这个弹框呢,下面就来实践一下. 1.这个弹框的意思,如果英文不好的童鞋随便用一个翻译软件就能够翻译出来并能够大体了解其含义: 2.接着我们来看看如何取消这样的一个弹框: Windows--

VC++、MFC最好的开源项目

介绍:介绍一下用VC++/MFC写的最好的开源项目. Sourceforge.net中有许多高质量的VC++开源项目,我列举了一些可以作为VC++程序员的参考. 正文: VC++.MFC中最好的开源项目 作者:Sudhir Mangla VC++.MFC中最好的开源项目 作者:Sudhir Mangla 改编:http://www.okbase.net/home/haobao 介绍一下用VC++/MFC写的最好的开源项目. Sourceforge.net中有许多高质量的VC++开源项目,我列举了

8>>monitor-system

#!/bin/bash##Snapshot_Stats - produces a report for system stats# This report will mail to root.# Command :free,uptime,exec##############################################################Set Script Variables#DATE=`date +%d"-"%m"-"%Y`DISK

psutil官方文档

psutil documentation¶ Quick links Home page Install Blog Forum Download Development guide What’s new About psutil (python system and process utilities) is a cross-platform library for retrieving information on running processes and system utilization

监测系统统计数据

1.运行时间 [[email protected] ~]# uptime | sed -n '/,/s/,/ /gp'| awk '{ > if($4 =="days" || $4 == "day") > {print $2,$3,$4,$5} > else > {print $2,$3}}' up 22:54 2.磁盘使用情况 [[email protected] ~]# df -h 文件系统       容量  已用  可用 已用%% 挂

Python 模块续 configparser、shutil、XML、paramiko、系统命令、

一.configparse # 注释1 ; 注释2 [section1] # 节点 k1 = v1 # 值 k2:v2 # 值 [section2] # 节点 k1 = v1 # 值 1.获取所有节点 import configparser config = configparser.ConfigParser() config.read('test',encoding='utf-8') ret = config.sections() print(ret)#['section1', 'sectio