in reply to Re: Getting a simple directory listing
in thread Getting a simple directory listing
Update: Is there a more efficient way to do this? This seems a bit bulky. If someone could show me a better way (and explain it for this newbie) to do this, I'd really appreciate it.use Cwd; print "Current dir is: ", cwd, "\n"; opendir(TEXTFILES, "desktop") || die "Couldn't open the text file dire +ctory: $!"; @data=readdir(TEXTFILES); foreach (@data) { push (@dir) if (-d "./desktop/$_"); } closedir(TEXTFILES); print @dir; # This line is just here to make sure it worked, which it +currently doesn't.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Getting a simple directory listing
by ZZamboni (Curate) on May 01, 2001 at 04:24 UTC | |
by Stamp_Guy (Monk) on May 01, 2001 at 04:27 UTC | |
by ZZamboni (Curate) on May 01, 2001 at 04:35 UTC |