Empty directories having different size


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Empty directories having different size
# 1  
Old 01-19-2006
Empty directories having different size

$ls -lrt mydir
total 12
drwxrwxrwx 2 nobody nobody 512 Aug 8 11:51 tmp
drwxrwxrwx 2 nobody nobody 4608 Jan 19 12:20 web.cache

$ ls -lrt mydir/web.cache/
total 0

$ ls -lrt mydir/tmp/
total 0

Can anyone explain me the above results? I know the o/p of ls, but this seems weird.
Why did the 1st ls give total 12? I think it is supposed to give the total number of files listed?
Why is the size of the 2 directories listed different. when both the directories are empty?

Thanks,
Rahul.
# 2  
Old 01-19-2006
Quote:
Originally Posted by rahulrathod
$ls -lrt mydir
total 12
drwxrwxrwx 2 nobody nobody 512 Aug 8 11:51 tmp
drwxrwxrwx 2 nobody nobody 4608 Jan 19 12:20 web.cache

$ ls -lrt mydir/web.cache/
total 0

$ ls -lrt mydir/tmp/
total 0

Can anyone explain me the above results? I know the o/p of ls, but this seems weird.
Why did the 1st ls give total 12? I think it is supposed to give the total number of files listed?
Why is the size of the 2 directories listed different. when both the directories are empty?

Thanks,
Rahul.

total <number>
indicates the total no of blocks (including indirect blocks ) in the directory
and not the no of files under that.

total display cannot be guaranteed when there are files with hard links in the directory.

have u checked for the existence of hidden files (the one with <dot>)

ls -al
# 3  
Old 01-19-2006
ls -al displays this

$ ls -lart mydir/tmp
total 4
drwxrwxrwx 4 root other 512 Aug 8 11:51 ..
drwxrwxrwx 2 nobody nobody 512 Aug 8 11:51 .
$ ls -lrta mydir/web.cache/
total 12
drwxrwxrwx 4 root other 512 Aug 8 11:51 ..
drwxrwxrwx 2 nobody nobody 4608 Jan 19 12:20 .

The size 4608 is poniting to the . i.e the current directory. Is there any problem with the FileSystem?

Thanks,
Rahul
# 4  
Old 01-19-2006
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Empty Directories

Please help me. How i can find empty directories in solaris?? (4 Replies)
Discussion started by: FoDeGe
4 Replies

2. Shell Programming and Scripting

How to exclude the empty directories

Hi., I have a script, in which I am processing a files present in the directory types. ls -lrt | grep ^d | grep Dir_type | awk -f '{print $9}' |\ while read dir_name; do #operations done where Dir_type is the pattern in which directories get created. How to filter out empty... (2 Replies)
Discussion started by: IND123
2 Replies

3. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

4. Shell Programming and Scripting

Deleting empty directories using find

Hello, I'm submitting this thread, because I was looking a way to delete empty directories using find and I found a thread from 2007 that helped me. I have worked from that threat, but I found that the command sent would analyze original directory and may delete it to. I have come up with expanded... (3 Replies)
Discussion started by: lramirev
3 Replies

5. Shell Programming and Scripting

Listing non empty directories

Hi Gurus, How to list directories that are non-empty and non-hidden Thanks in advance (2 Replies)
Discussion started by: kinny
2 Replies

6. UNIX for Dummies Questions & Answers

Remove only Empty Directories

I know this one was answered before in forum below - https://www.unix.com/unix-dummies-questions-answers/58210-removing-empty-folders-using-find-command.html But that one is closed & I have a question so here it goes. I want to delete all 2006 files. Now if along with the files, if the... (2 Replies)
Discussion started by: kedar.mehta
2 Replies

7. Shell Programming and Scripting

identify the empty directories

Hi Wrote the below script to identify the empty directories ,when executing the below showing that directory is not empty but the directories are empty.Please help to identify the empty directories 33 is not empty 33 is not empty 33 is not empty 33 is not empty for file in `find .... (5 Replies)
Discussion started by: mohan705
5 Replies

8. UNIX for Dummies Questions & Answers

Help identifying empty directories

Is there a way you can identify directories that are empty? I do not need to remove them, I just need to identify them below a cetain path. I have tried the following already and it returned everything for some reason. #!/bin/sh && set -- . find "$@" -type d -depth -print > dir.txt |... (2 Replies)
Discussion started by: dboard
2 Replies

9. Shell Programming and Scripting

searching for list of empty directories

Guys I need to write a korn shell script that will search for a list of empty sub-directories in a specific directory and then email a list of these empty directories. Any ideas - apologies, I am new to shell scripting. Thanks (4 Replies)
Discussion started by: man80
4 Replies

10. UNIX for Dummies Questions & Answers

scanning empty directories

Hi, I want to produce a text file representing a list of empty directories on a unix system starting from a specified directory. I hope I explained well my problem. Thanks in advance. (7 Replies)
Discussion started by: N065956BM
7 Replies
Login or Register to Ask a Question