On Mon, Jan 26, 2015 at 05:07:37PM +0800, lihongliang@xxxxxxxxx wrote: > Hello > Can get direct directory size int the XFS file system? > example: > root@ficsNode1 test1]# mount | grep xfs > /dev/sdc on /xfs type xfs (rw,uquota) > [root@ficsNode1 test1]# pwd > /xfs/test1 > [root@ficsNode1 test1]# ls -lh > total 5M > -rw-r--r-- 1 root root 1.0M Jan 26 09:33 block1 > -rw-r--r-- 1 root root 1.0M Jan 26 09:33 block2 > -rw-r--r-- 1 root root 1.0M Jan 26 09:33 block3 > -rw-r--r-- 1 root root 1.0M Jan 26 09:33 block4 > -rw-r--r-- 1 root root 1.0M Jan 26 09:33 block5 > [root@ficsNode1 test1]# > > can I get direct it by call system function the that the /xfs/test1 is 5M? > No, because that 5MB data point is not a direct attribute of the directory. It's the sum of the space used by files within the directory. The blocks used by the directory itself are filled with directory entries (e.g., data structures that contain the file names listed above along with a reference to an inode). A tool like ls or du is used to process a directory to obtain cumulative data such as the total space used by files in some particular subtree. Brian > > lihongliang@xxxxxxxxx > _______________________________________________ > xfs mailing list > xfs@xxxxxxxxxxx > http://oss.sgi.com/mailman/listinfo/xfs _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs