1 TESTFILE                        
Testfile is a program callable from DCL to determine a file's status.

	Calling sequence from DCL: $ testfile file-specification
	It returns two local symbols:
	file_spec is the expanded file specification.
	file_code is the RMS error code associated with the file.

	Examples:
		1. For an existing file:
			$ testfile temp.dat
		Gives:	file_spec := "dba0:[user]temp.dat;1"
			file_code := "%X00010001

		2. For a file that does not exist:
			$ testfile junk.jnk
		Gives:	file_spec := "dba0:[user]junk.jnk;"
			file_code := "%X00018292"

	Consult the VAX-11 RMS REFERENCE manual for a complete
	set of error codes.
