Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^3: Input Output Question

by poj (Abbot)
on Jul 15, 2013 at 07:31 UTC ( [id://1044301]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Input Output Question
in thread Input Output Question

Yes, it just copies the files. If you want to change them in the process then something like this
#!perl use strict; opendir(DIR,'../input') or die "$!"; while (readdir DIR){ unless (/^[.]{1,2}$/){ print "parsing $_\n"; open IN,'<','../input/'.$_ or die "Could not open $_ for input : $!"; open OUT,'>','../output/'.$_ or die "Could not open $_ for output : $!"; while (my $line = <IN>){ # process $line print OUT $line; } close IN; close OUT; } }
poj

Replies are listed 'Best First'.
Re^4: Input Output Question
by rjt (Curate) on Jul 15, 2013 at 10:21 UTC

    A reasonable approach. I have a couple of comments:

    unless (/^[.]{1,2}$/){ open IN,'<','../input/'.$_ or die "Could not open $_ for input : $!";

    You skip `.' and `..' with the unless check, but don't do any checks after that, so if DIR contains any other directories, the script will die prematurely. That might not be an issue, depending on the OP's situation, but it's also easily avoided by replacing the unless with:

    next if -d; # Skip directories.. OR: # next unless -f; # Skip anything that isn't a file

    (You can then outdent what is currently in the unless { } block.)

    Second, there is pretty much never a good reason not to use indirect filehandles to avoid potential namespace clashes with handles like DIR, IN, and OUT:

        open my $in, '<', '../input/' . $_;

    Hope this helps.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (8)
As of 2024-04-23 10:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found