Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: script fails with perl 5.004_02

by rjt (Curate)
on Oct 27, 2019 at 07:44 UTC ( [id://11108010]=note: print w/replies, xml ) Need Help??


in reply to script fails with perl 5.004_02

opendir($DIR, ...) doesn't work because lexical filehandles weren't available in perl 5.004. But opendir(DIR, ...) doesn't work either, because your checkDir subroutine is recursive, but you're sharing the same filehandle between all subroutine calls.

You can get around this by reading the entire directory (i.e., get the full list of filenames in the current directory) before your recursion step.

On a side note, your example is way, way longer than it needs to be. Boil down your example into the smallest bit of code that reproduces your problem. In so doing, you might have noticed that it only happened when you tried to do it recursively.

Replies are listed 'Best First'.
Re^2: script fails with perl 5.004_02
by harangzsolt33 (Chaplain) on Oct 27, 2019 at 14:17 UTC
    Oh, thank you! And yes, I will condense this code..

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 19:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found