Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

VAXTPU FILE_SEARCH — VMS 5.2

 FILE_SEARCH

 Calls the RMS service $SEARCH to search a directory file and return the
 partial or full file that you specify.

 FILE_SEARCH returns a string containing the resulting file specification.
 If the file is not found in the directory, FILE_SEARCH returns a null
 string and signals an error.

 Syntax

    string4 := FILE_SEARCH (string1 [, string2 [, string3 [, keyword1
                           [,...[,keyword_n]]]]])

 Parameters

    string1              The specification of the file you want to find.

    string2              A default file specification.

    string3              A related file specification

    keyword              One or more keywords corresponding to a field in a
                         VMS file specification.  If you specify one or
                         more keywords, FILE_SEARCH returns only those
                         fields requested in the keyword list.  The valid
                         keywords are:  NODE, DEVICE, DIRECTORY, NAME,
                         TYPE, or VERSION.  You can use as many of these
                         keywords as you wish with one FILE_SEARCH
                         statement.  Use one or more keywords to specify
                         which fields of the file specification you want
                         FILE_PARSE to return.

 Comments

 Specify the first three parameters as quoted strings.  Logical names and
 device names must terminate with a colon.  If you omit optional parameters
 to the left of a parameter, you must include null strings a place holders
 for the missing parameters.  You must use FILE_SEARCH multiple times with
 the same parameter to get all of the occurrences of a filename in a
 directory.  When all matching files have been found, a null string is
 returned.

 Example

 The following procedure puts each .RNO file in the current directory into
 a separate buffer.  You can use the SHOW (BUFFERS) statement to display
 the buffers created with this procedure.  The initial FILE_SEARCH clears
 the context in case of an incomplete previous file search.

    PROCEDURE user_collect_rnos
        LOCAL file_spec;
        file_spec := FILE_SEARCH ('');
        LOOP
           file_spec := FILE_SEARCH ('*.RNO');
           EXITIF file_spec = "";
           CREATE_BUFFER (FILE_PARSE (file_spec, "", "", name), file_spec);
        ENDLOOP;
    ENDPROCEDURE;

 Related Topics

    FILE_PARSE

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026