DU command doesn’t take into account hidden files and directories. For example if you want check disk usage of all files and directories in current directory you can use the following command:
$ du -sm *
Unfortunately this command doesn’t show hidden files and directories. To check disk usage of all files and directories (even hidden) use this command:
$ du -sm .[!.]* *
Now you can see sizes of all files (even hidden).