Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: How to tell if a Directory is Empty

by tos (Deacon)
on Apr 14, 2014 at 11:39 UTC ( [id://1082231]=note: print w/replies, xml ) Need Help??


in reply to How to tell if a Directory is Empty

# ls 1 2 3 4 5 # ls -al * 1: total 0 drwxr-xr-x 2 root root 6 Apr 14 13:22 . drwxr-xr-x 7 root root 46 Apr 14 13:22 .. 2: total 4 drwxr-xr-x 2 root root 16 Apr 14 13:22 . drwxr-xr-x 7 root root 46 Apr 14 13:22 .. -rw-r--r-- 1 root root 5 Apr 14 13:22 two 3: total 0 drwxr-xr-x 2 root root 6 Apr 14 13:22 . drwxr-xr-x 7 root root 46 Apr 14 13:22 .. 4: total 4 drwxr-xr-x 2 root root 17 Apr 14 13:22 . drwxr-xr-x 7 root root 46 Apr 14 13:22 .. -rw-r--r-- 1 root root 5 Apr 14 13:23 four 5: total 0 drwxr-xr-x 2 root root 6 Apr 14 13:22 . drwxr-xr-x 7 root root 46 Apr 14 13:22 .. # perl -we 'use Data::Dumper;@d=grep {<$_/*>} (<*>);print Dumper \@d' $VAR1 = [ '2', '4' ]; # perl -we 'use Data::Dumper;@d=grep {!<$_/*>} (<*>);print Dumper \@d' $VAR1 = [ '1', '3', '5' ]; #

Is simplicity best or simply the easiest Martin L. Gore

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1082231]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 21:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found