http://www.perlmonks.org?node_id=969592


in reply to Re^4: file::find usage with apache question
in thread file::find usage with apache question

well, if you are running this in a cgi script, another possibility would be using FindBin to avoid an absolute path.
find(..., "$FindBin::Bin/../myDir");

Replies are listed 'Best First'.
Re^6: file::find usage with apache question
by Yoshiro (Novice) on May 09, 2012 at 23:19 UTC

    Thank you tinita,

    An idea worth considering.

    Yoshiro