in reply to Re^2: Help with $File:Find
in thread Help with $File:Find
Add the line $|=1; at the top of your program. This will unbuffer STDOUT. Then put in some print statements as I suggested earlier. Then when the error happens, we will have an idea of what the program was doing. By default, STDOUT is buffered meaning that it only prints when its line buffer is full. STDERR is non-buffered by default meaning that it's error lines print right away. When you un-buffer STDOUT, the time sequence of the normal prints and error prints are preserved. The line right before the error will show what the program was doing right before the error occured.
Update: you said "There is more to my get_files sub that does a foreach (@array) and then checks the files for certain criteria. I left out that section for clarity here." It could very well be that your simplification obscures the actual problem. Can you reproduce the problem with your simplified code?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Help with $File:Find
by roperl (Beadle) on Feb 16, 2018 at 18:16 UTC | |
by Marshall (Canon) on Feb 16, 2018 at 23:09 UTC | |
by roperl (Beadle) on Feb 20, 2018 at 18:22 UTC | |
by roperl (Beadle) on Feb 20, 2018 at 18:52 UTC | |
by beech (Parson) on Feb 21, 2018 at 05:13 UTC | |
by Marshall (Canon) on Feb 21, 2018 at 02:57 UTC | |
|