Re: Locating files in sub-directories

2013-12-17 Thread Octavian Rasnita
From: "SSC_perl" Octavian, Thanks for the reply. >> So I tried the following: >> use lib "ss_files"; >> This also works, but iirc, I read that it won't work across all platforms. >> Is that correct? > > > This method also works, but to be equivalent with the first method it should > have b

Re: Locating files in sub-directories

2013-12-17 Thread SSC_perl
Octavian, Thanks for the reply. >> So I tried the following: >> use lib "ss_files"; >> This also works, but iirc, I read that it won't work across all platforms. >> Is that correct? > > > This method also works, but to be equivalent with the first method it should > have been: > use

Re: Locating files in sub-directories

2013-12-16 Thread Octavian Rasnita
From: "SSC_perl" I'm in the process of moving certain files of the SurfShop script into a sub-directory to clean up the main directory and would like to know the best way for the script to find these files. I was using this method: use FindBin qw($Bin); use lib "$Bin/../ss_files"; which work

Locating files in sub-directories

2013-12-16 Thread SSC_perl
I'm in the process of moving certain files of the SurfShop script into a sub-directory to clean up the main directory and would like to know the best way for the script to find these files. I was using this method: use FindBin qw($Bin); use lib "$Bin/../ss_files"; which worked