Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

Subject: append a file

Original Message
Name: athena123
Date: January 29, 2003 at 23:51:20 Pacific
Subject: append a file
OS: VMS 7
CPU/Ram: alpha
Comment:
Hi,
How do we append a file in a procedure? the file is created by the procedure itself.
Thank you :)


Report Offensive Message For Removal

Response Number 1
Name: Jo
Date: January 30, 2003 at 03:21:54 Pacific
Subject: append a file
Reply: (edit)
Hi,

If a file already exsist but needs to be opened you should use OPEN/APPEND.
To write records to the file you should use the WRITE command
Here's an example, first loop creates a new file, second loop opens an existing file.

$ !
$ ! CREATE NEW OUTPUT FILE
$ !
$ OPEN/WRITE/ERROR=OPEN_ERROR OUTPUT_FILE TEMP.OUT
$ COUNT = 0
$ WRITE_LOOP1:
$ COUNT = COUNT + 1
$ IF COUNT .EQ. 11 THEN GOTO ENDIT1
$ WRITE OUTPUT_FILE "Count is ''COUNT'."
$ GOTO WRITE_LOOP1
$ ENDIT1:
$ CLOSE OUTPUT_FILE
$ !
$ ! APPEND EXISTING FILE
$ !
$ OPEN/APPEND/ERROR=OPEN_ERROR OUTPUT_FILE TEMP.OUT
$ COUNT = 0
$ WRITE_LOOP2:
$ COUNT = COUNT + 1
$ IF COUNT .EQ. 11 THEN GOTO ENDIT2
$ WRITE OUTPUT_FILE "Count is ''COUNT'."
$ GOTO WRITE_LOOP2
$ ENDIT2:
$ CLOSE OUTPUT_FILE
$ EXIT
$ !
$ OPEN_ERROR:

Greetz,

Jo!



Report Offensive Follow Up For Removal

Response Number 2
Name: ME
Date: January 31, 2003 at 11:06:56 Pacific
Subject: append a file
Reply: (edit)
Use the APPEND command ?

Report Offensive Follow Up For Removal



Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: append a file

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software



Version Tracker Pro
Keep your software current and secure, effortlessly

Click Here for a Free Scan

Driver Agent
Automatically find the latest drivers for your computer.
Click Here for a Free Scan



The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC