identify the empty directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting identify the empty directories
# 1  
Old 07-07-2007
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 . -type d`
do
tfiles=`cd $file|ls -la | wc -l`
if [ $tfiles -gt 0 ]; then
echo $tfiles is not empty
else
echo $tfiles is empty
fi
done
~

Thanks,
Mohan
# 2  
Old 07-07-2007
You are doing ls -la which will list "." and ".." so you need to subtract 2 from your count.
# 3  
Old 07-07-2007
Hope you are ok with perl

Code:
#!/usr/bin/perl

$myDir="/";
my $count=0;
opendir(DIR,$myDir) || die ("Unable to read directory\n");
while($temp_dir = readdir(DIR)) {
	next if($temp_dir=~ /(^\.+$)/);
	opendir(TMPDIR,"$myDir"."/"."$temp_dir") || die ("Unable to open the sub-directory $temp_dir");
	@tmp_sub_dir_list=readdir(TMPDIR);
	$no_of_files=@tmp_sub_dir_list;
 	closedir(TMPDIR);
	if ($no_of_files ==2) {
		print "$myDir"."/"."$temp_dir"."\n";
		$count++;
	}
}	
print STDERR ("The Total number of Empty Dir\t:  $count\n");
closedir(DIR);

# 4  
Old 07-07-2007
you can find empty directories with
Code:
find . -maxdepth 1 -empty -type d

change maxdepth to suit your needs
# 5  
Old 07-07-2007
Is it masdepth is valid unix command .when try to execute i was getting the below error

ind: bad option -maxdepth


find . -maxdepth 1 -empty -type d


Thanks,
Mohan
# 6  
Old 07-07-2007
No, it is not a part of the standard find command. It can be found on the gnu variant of find.
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

awk to identify empty fields in line

I am trying to use awk to identify and print out records in fields that are empty along with which line they are in. I hope the awk below is close, it runs but nothing results. Thank you :). awk awk -F'\t' 'FNR==NR ~ /^*$/ { print "NR is empty" }' file file 123 GOOD ID 45... (3 Replies)
Discussion started by: cmccabe
3 Replies

3. Shell Programming and Scripting

Identify empty file with null record

Hi Team, I have a file abc.dat which is a empty file. But it has null record in first line. I need to identify this unique file and handle it separately. scenario 1: abc/dw> wc abc.dat 1 0 1 abc.dat abc/dw> cat abc.dat abc/dw> scenario 2: abc/dw> wc pqr.dat 0 0 0 pqr.dat... (3 Replies)
Discussion started by: kmanivan82
3 Replies

4. 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

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. UNIX for Dummies Questions & Answers

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... (3 Replies)
Discussion started by: rahulrathod
3 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