Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^3: file listing within skript not working

by vinoth.ree (Monsignor)
on Jan 30, 2013 at 11:42 UTC ( [id://1016041]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-25 14:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found