in reply to How to determine absolute path of current Perl file?

Hi

I had faced some issue like yours (I think).

try next lines in your script (It work for me):

use Cwd; my $this_file_full_path = Cwd::abs_path(__FILE__); print $this_file_full_path;

BR

Hosen