POV-Ray : Newsgroups : povray.general : File I/O : Re: File I/O Server Time
6 Oct 2024 08:50:39 EDT (-0400)
  Re: File I/O  
From: pbrants
Date: 17 Apr 2014 18:10:00
Message: <web.53505012830820894e8159130@news.povray.org>
Le_Forgeron <jgr### [at] freefr> wrote:
> Le 17/04/2014 17:17, pbrants nous fit lire :
> > Here I am again!
> >
> > #fopen MyFile "niks.txt" write
> >   #declare i=1;
> >   #while (i <= 5)
> >      #write (MyFile, i,",")
> >      #declare i=i+1;
> >      #end  // while
> >   #fclose Myfile
> >
> >   #fopen MyFile "niks.txt" read    // Here parse error!
> >   #declare i=1;
> >   #while (i <= 5)
> >      #read (MyFile, i)
> >      #declare i=i+1;
> >      #end  // while
> >   #fclose MyFile
> >
> > This piece of code gives a parse error on the indicated line:
> > Cannot read from file niks.txt because the file is open for writing only
> >
> > What is wrong here?
> > I'm using Windows 7
>
>
> You closed Myfile, but opened MyFile. Typo! (Camel vs Pascal)

Sorry, it was a typo indeed, but it gives the same error with the typo
corrected!

Paul


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.