At 05:51 PM 1/9/2006 -0800, Lists wrote:
>@files = <$path/*>;
I would do:
@files = glob "$path/*";
foreach $file (@files) {
do_something;
}
--
REMEMBER THE WORLD TRADE CENTER ---=< WTC 911 >=--
"...ne cede malis"
0100
___
Perl-
Spencer_Lists wrote:
> Greetings ,
>
> I am trying to create an array with all of the files in a folder so
> that I can do various things with them. I have no problem unless the
> path contains space characters such as "documents and settings" I have
> written TK applications that use dirtree and
On Mon, 09 Jan 2006, Spencer_Lists wrote:
> I am trying to create an array with all of the files in a folder so
> that I can do various things with them. I have no problem unless the
> path contains space characters such as "documents and settings" I have
> written TK applications that use dirtree