Difference between revisions of "DISPLAY FILES"

From Lianjapedia
Jump to: navigation, search
 
(4 intermediate revisions by 2 users not shown)
Line 11: Line 11:
 
The DISPLAY FILES command displays filenames in the current directory and path (see SET PATH) matching the specified <skeleton>.  The following 'wild card' characters may be used
 
The DISPLAY FILES command displays filenames in the current directory and path (see SET PATH) matching the specified <skeleton>.  The following 'wild card' characters may be used
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
 
!Character||Description
 
!Character||Description
 
|-
 
|-
Line 29: Line 29:
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
set printer to \\spooler
+
display files *.prg
display files *.prg to print
+
set printer to
+
 
</code>
 
</code>
  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
[[Category:Disk and File Utilities]]
+
[[Category:Disk and File Commands]]
[[Category:Disk and File Utilities Commands]]
+

Latest revision as of 11:30, 30 January 2013

Purpose

Display a directory of files

Syntax

DISPLAY FILES [<skeleton>] [TO FILE <.txt filename> | (<expC>)]

See Also

DIR, LIST FILES

Description

The DISPLAY FILES command displays filenames in the current directory and path (see SET PATH) matching the specified <skeleton>. The following 'wild card' characters may be used

Character Description
? Matches any one character.
% Matches any one character.
* Matches zero or more characters.

If DISPLAY FILES is issued with no <skeleton> specified, then it will list details of table files only.

TO <file>

The display output will be sent to the specified file. The filename can be substituted with a <expC>, enclosed in round brackets, which returns a valid filename. If no file extension is specified, then ".txt" will be used.

Example

display files *.prg