[EMAIL PROTECTED] wrote:

> Hello, I have a rebol script process a specific file. How can I add code to make
> it process all the files in the directory?
>
> I tried to change the following line
>     FileStream: read/lines %files1.txt
> to
>     FileStream: read/lines %mydir/*.txt

dir: read %mydir/

foreach file dir [print read/lines join %mydir/ file]   ; just take care your block
contains just .txt files ... :-)

Cheers,
-pekr-

>
>
> But it didn't work.
>
> Any quick fix for this script?
>
> Thanks
>
> tZ

Reply via email to