in reply to Working with a unkown number of arrays
Question: In the code above, you only do anything (processing files in any folder) if there is something in the high-priority folder. Specifically, you have:
if (@sorted_highest_priority) { foreach (@sorted_highest_priority){ ... } if (@sorted_middle_priority) { foreach (@sorted_middle_priority){ ... } } if (@sorted_lowest_priority) { foreach (@sorted_lowest_priority){ ... } } }
That's a mistake, right?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |