vote up 4 vote down star

I would like to execute ls in a Perl program as part of CGI script.

For this I used exec(ls), but this does not return from the exec call.

Is there a better way to get a listing of a directory in Perl?

flag

6 Answers

vote up 15 vote down check

Exec doesn't return at all. If you wanted that, use system.

If you just want to read a directory, open/read/close-dir may be more appropriate.

opendir my($dh), $dirname or die "Couldn't open dir '$dirname': $!";
my @files = readdir $dh;
closedir $dh;
#print files...
link|flag
Check the return value of system commands: opendir... or die "... $!" Or "use autodie;" to make them fatal by default. I know it's just a nitpick, but when you're giving advice to beginners it's an important lesson for them. – tsee Oct 15 '08 at 16:26
Yeah, you're right, I'll add it. Thanks. – Leon Timmermans Oct 15 '08 at 17:29
In case someone is wondering why readdir and closedir aren't checked: both only have one possible error, 'invalid directory handle'. Since I opened it myself and checked it, I can safely assume it is valid. Also, in list context readddir can't be checked anyway. – Leon Timmermans Oct 15 '08 at 17:43
If you do NOT want dot files you can do: my @files = grep { !/^\./ } readdir $dh; – Ranguard Oct 17 '08 at 6:26
vote up 6 vote down

In order to get the output of a system command you need to use backticks.

$listing = `ls`;

However, Perl is good in dealing with directories for itself. I'd recommend using File::Find::Rule.

link|flag
vote up 8 vote down

exec does not give control back to the perl program. system will, but it does not return the results of an ls, it returns a status code. tick marks `` will give you the output of our command, but is considered by some as unsafe.

Use the built in dir functions. opendir, readdir, and so on.

http://perldoc.perl.org/functions/opendir.html

http://perldoc.perl.org/functions/readdir.html

link|flag
vote up 0 vote down

I would recommend you have a look at IPC::Open3. It allows for far more control over the spawned process than system or the backticks do.

link|flag
vote up 2 vote down

Everyone else seems stuck on the exec portion of the question.

If you want a directory listing, use Perl's built-in glob or opendir. You don't need a separate process.

link|flag
Specifically, glob does exactly what you want: returns an array of the names of files in a folder. – Robert P Oct 16 '08 at 20:01
vote up 0 vote down

On Linux, I prefer find:

my @files = map { chomp; $_ } `find`;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.