http://www.perlmonks.org?node_id=1016041


in reply to Re^2: file listing within skript not working
in thread file listing within skript not working

Well said moritz ++

McSvenster Perl has many ways to do things,you can also use readdir() function this way,

use strict; use warnings; use Data::Dumper; opendir (DIR, "/home/vinoth/"); my @files = grep /\.xml$/, readdir DIR; print Dumper \@files;

I am not telling this is the best way, but its also one of the way.

Replies are listed 'Best First'.
Re^4: file listing within skript not working
by McSvenster (Novice) on Jan 30, 2013 at 11:59 UTC

    It's getting more and more confusing for me...

    But maybe I found the critical point: When I use the backticks perl writes to the logfile until the program comes to the line with the backticks. But when I use "glob" instead, perl executes the whole program before it performs any file-writing.

    Is this right? And more important: Can you explain it to me? (you see, I am a beginner...)