Boris Shor wrote:
> 
> Why does the following work (eg, give me an array filled with matching file
> names):
> 
> @filelist = glob("w:/stleg/Colorado/House_98/*.htm");
> 
> And when I rename the directory to "House 98" (space instead of underscore),
> the following does not:
> 
> @filelist = glob("w:/stleg/Colorado/House 98/*.htm");


This works in Linux, don't know if it will work in Windows.

use File::Glob ':glob';

my @filelist = glob 'w:/stleg/Colorado/House 98/*.htm';



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to