exists update

Fairlight fairlite at fairlite.com
Mon Dec 6 19:24:18 PST 2004


[Rearranged for readability. --FLT]

Is it just me, or did Dennis Malen say:
> > ----- Original Message ----- 
> > From: "Kenneth Brody" <kenbrody at bestweb.net>
> > 
> > In what way does the exists() function "not work"?
> 
> Because the header is not written to the file.

That doesn't automatically mean exists() doesn't work correctly, it is far
more likely that your logic code is simply not written correctly for what
you want to accomplish.

You want to print a header to the file if it doesn't exist, and then append
contents unconditionally?  That's what I've gathered from the thread so
far.  it's pretty simple:


::declare DidHeader(1,YESNO,g):
:exists("/path/to/some/file") eq "0" and DidHeader ne "Y":gosub prthead:
::gosub prtlins:

...

prthead:'start your printing here:'by doing something that prints the header:
::DidHeader="Y":
::return:
::end:

...

prtlins:'start your data print here:'by doing something that prints the data:
::return:
::end:


(I'm anal about putting in end's to prevent as much accidental fallthrough
as possible.  Saves on debugging later.)

mark->


More information about the Filepro-list mailing list