Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!lll-lcc!ames!ucbcad!ucbvax!TCGOULD.TN.CORNELL.EDU!tedcrane From: tedcrane@TCGOULD.TN.CORNELL.EDU.UUCP Newsgroups: comp.os.vms Subject: Re: Files in FORTRAN Message-ID: <8704131636.AA07668@tcgould.TN.CORNELL.EDU> Date: Mon, 13-Apr-87 11:36:46 EST Article-I.D.: tcgould.8704131636.AA07668 Posted: Mon Apr 13 11:36:46 1987 Date-Received: Wed, 15-Apr-87 00:32:57 EST References: <12293420478.19.STEINBERGER@KL.SRI.COM> Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: tedcrane%tcgould.tn.cornell.edu.UUCP@tcgould.TN.CORNELL.EDU (Ted Crane) Distribution: world Organization: Program of Computer Graphics, Cornell University Lines: 12 In article <12293420478.19.STEINBERGER@KL.SRI.COM> STEINBERGER@KL.SRI.COM (Richard Steinberger) writes: >I'd like to allow a program (in FORTRAN) to open a new file and occasionally >write some text to it. The key word is "occasionally". You can open the file for append, write your occasional text to it, and close it again. In between, the file is available to other users. This technique is not recommended if "occasionally" is "frequently". The overhead due to opening and closing the file will exceed the time taken to actually write data into the file, with the result that your program (and the system) will run quite a bit more slowly.