> For the complete documentation index, see [llms.txt](https://tk233.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tk233.gitbook.io/notes/tools/ubuntu/check-disk-folder-file-size.md).

# Check Disk / Folder / File Size

## Check disk size

```bash
df -h .
```

```bash
(base) tk@a25:/rscratch/tk/Desktop$ df -h .
Filesystem                        Size  Used Avail Use% Mounted on
10.11.49.77:/export/zfs/rscratch  115T  101T   15T  88% /rscratch
```

## Check Current Folder Size

```bash
du -sh .
```

```bash
(base) tk@a25:/rscratch/tk/Desktop$ du -sh .
88G     .
```

To list children sizes, do

```bash
du -ch .
```
