Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: script fails with perl 5.004_02

by rjt (Curate)
on Oct 27, 2019 at 07:44 UTC ( #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 (Hermit) 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? | Other CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2023-03-26 09:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (63 votes). Check out past polls.

    Notices?