Table of Contents

File System - Analytics

About

See also: Tree - Analysis

Steps

Dump File System Information

Every file system has a way to dump file system information.

du

Disk usage

Linux - du (Disk Usage)

find

Example on Linux with the find command to list information recursively

# The header
echo "Relative_Path,Depth,Leading_Dir,Size_in_Byte,User_Name,Last_access_time,Last_change_time" > diskInfo.csv
# The data
find . -printf '"%p","%d","%h","%s","%u","%AY-%Am-%Ad","%CY-%Cm-%Cd"\n' >> diskInfo.csv

where:

Path:

Size:

User/Security

Time:

Analysis

Use any analysis tool such as:

Disk Usage Tools

There are other disk usage tools that permit to analysis of a file system. See What are Disk Usage Tools? ( xdu tools)