Link to home
Start Free TrialLog in
Avatar of garry_m
garry_m

asked on

Find size of folder without using 'du'

Hi, is it possible to find the size of a folder without using 'du'?

I have 2 folders and they are supposed to contain exactly the same content, however, when I do a 'du' on each, they return different sizes.  Is it possible to return the exact size of these folders using something similar to the 'ls -la' command (which only reads the size of flat files).

Thanks
ASKER CERTIFIED SOLUTION
Avatar of bloemkool1980
bloemkool1980

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of garry_m
garry_m

ASKER

I thought that 'du' only represented the size that the file uses on disk, if it is arranged differently via blocks etc on the two separate machines then the size may be different.  Is this correct thinking? Anyway, your idea of tarring them up is good enough for me to accept.  Thanks.
I have no idea about how it does it I thought it measured the actual file size and not the block size.
Avatar of garry_m

ASKER

I think (but I am no expert) that 'du' stands for 'disk usage', so that a file can be spread across many blocks, even if it only uses a small amount of space in each of those blocks, the disk usage returned will still show the total size of all those blocks put together, not the actual physical number of bytes in that file.