Hi
>First -all files and directories start with % and not '
>
>ie.. %rebol/proc/
>
>web-page: read %form.html
>web-page: write%newform.html
I understand this, but how do I store a file whose filename is a variable?
Aneesha
>>Hi
>>
>>I'm new to Rebol (been using it a couple of hours only).
>>
>>Anyway I'm trying to open a file in the rebol folder, do some processing to
>>it (basically extract links - got this bit working) and then save a file in
>>a different folder with the same filename.
>>
>>Here is my code that does not work.....
>>
>>course: %filename.txt
>>coursenew: "c:/rebol/proc/" + course
>>page: read course
>>write coursenew page
>>
>>Any help would be much appreciated
>>
>>
>>Aneesha