When I do this:
@filelist = <c:\\temp\\*.txt>;
$files = @filelist;
I get what I expect, but when I do this:
$FILE = "c:\\temp\\" . $VARIABLE . "*.txt";
@filelist = <$FILE>;
$files = @filelist;
it doesn't work. If I display $FILE I get what I expect, but I can't seem
to pass a variable into <>.
How do I dynamically get a file listing?
Thanks!
Steve
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web