in reply to Noob File::Find issue
Also, not all modules export their subroutines. I have no idea if File::Find does(and I'm too lazy to check), so you might have to do one of the following:
I personally find it good practice(by my own conventions) to do that, just to make it clearer to myself where a function comes from. Your choice, ultimately.#These statements are equivalent use File::Find qw( find ); use File::Find 'find';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Noob File::Find issue
by GrandFather (Saint) on May 01, 2012 at 02:14 UTC |