Chapter Contents |
Previous |
Next |
SAS Companion for UNIX Environments |
FILENAME fileref <device-type> 'external-file' <host-options>; |
FILENAME fileref device-type <'external-file'><host-options>; |
FILENAME fileref CLEAR | _ALL_ CLEAR; |
FILENAME fileref LIST | _ALL_ LIST; |
FILENAME fileref ("pathname-1" ... "pathname-n"); |
FILENAME fileref directory-name; |
FILENAME fileref <access-method> 'external-file' access-information; |
Note: When you clear a fileref that is defined by an environment
variable, the variable remains defined but is no longer considered a fileref.
You can still reuse it, either as a fileref or a libref. See Using Environment Variables to Assign Filerefs for more
information.
<File Descriptor number>
Device or Access Method | Function | External-file |
---|---|---|
CATALOG | references a SAS catalog as a flat file. | is a valid two-, three-, or four-part SAS catalog name followed by catalog options needed. Refer to SAS Language Reference: Dictionary for a description of catalog options. |
DISK | associates the fileref with a DISK file. | is either the pathname for a single file, or if you are concatenating filenames, a list of pathnames separated by blanks or commas and enclosed in parentheses. The level of specification depends on your location in the file system. Character Substitutions in Pathnames shows character substitutions that you can use when specifying a UNIX pathname. See Using DISK Files for more information. |
DUMMY | associates a fileref with a null device. | none. See Debugging Code With DUMMY Devices for more information. |
sends electronic mail to an address. | is an address and email options. See Sending Electronic Mail from Within the SAS System (EMAIL) for more information. | |
FTP | reads or writes to a file from any machine on a network that is running an FTP server. | is the pathname of the external file on the remote machine followed by FTP options. See Assigning Filerefs to Files on Other Systems (FTP and SOCKET access types) and SAS Language Reference: Dictionary for more information. If you are transferring a file from the OS/390 operating environment and you want to access the file by using one of the S370 formats, the file must be of type RECFM=U before you transfer it to UNIX. |
PIPE | reads input from or writes output to a UNIX command. | is a UNIX command. See Reading from and Writing to UNIX Commands (PIPE) and Routing Output for details. |
PLOTTER | sends output to a plotter. | is a device name and plotter options. See Using PRTFILE and PRINT with a Filerefand Using the PRINTTO Procedure for details. |
PRINTER | sends output to a printer. | is a device name and printer options. See Sending Output to PRINTER Devices, Using PRTFILE and PRINT with a Fileref, and Using the PRINTTO Procedure for details. |
SOCKET | reads and writes information over a TCP/IP socket. | depends on whether the SAS application is a server application or a client application. In a client application, external-file is the name or IP address of the host and the TCP/IP port number to connect to followed by any TCP/IP options. In a server application, it is the port number to create for listening, followed by the SERVER keyword, and then any TCP/IP options. See Assigning Filerefs to Files on Other Systems (FTP and SOCKET access types) and SAS Language Reference: Dictionary for details. |
TAPE | associates a fileref with a tape. | is the pathname for a tape device. The name specified should be the name of the special file associated with the tape device. See Processing Files on TAPE for more information. |
TEMP | associates a fileref with an external file stored in the WORK data library. | none. See Using Temporary Files (TEMP Device Type) for more information. |
TERMINAL | associates a fileref with a terminal. | is the pathname of a terminal. See Accessing TERMINAL Devices Directly for more information. |
URL | allows you to access remote files using the URL of the file. | is the name of the file that you want to read from or
write to on a URL server. The URL must be in one of these forms:
http://hostname/file http://hostname:portno/fileRefer to SAS Language Reference: Dictionary for more information. |
XPRINTER | sends output to the default printer that was set up through the Printer Setup dialog. | none. See Routing Output for more information. |
Using DISK Files |
FILENAME fileref <DISK> 'pathname' <options>; |
The following FILENAME statement associates the fileref
MYFILE with the external file
/users/mydir/myfile
, which
is stored on a disk device:
filename myfile disk '/users/mydir/myfile';
The following FILENAME statement assigns a fileref of
PRICES to the file
/users/pat/cars
. The FILE statement
then refers to the file using the fileref:
filename prices '/users/pat/cars'; data current.list; file prices; ...PUT statements... run;
See Concatenating Filenames for more information on using DISK files.
Debugging Code With DUMMY Devices |
The FILENAME syntax for a DUMMY file is
FILENAME fileref DUMMY 'pathname'<options>; |
Output to DUMMY devices is discarded.
Sending Output to PRINTER Devices |
FILENAME fileref PRINTER '<printer> <printer-options>' <options>; |
For example, this SAS program sends the output file to the BLDG3 printer:
filename myfile printer 'bldg3'; data test; file myfile; put 'This will appear in bldg3 .'; run;
See Using PRTFILE and PRINT with a Fileref and Using the PRINTTO Procedure for more information.
Using Temporary Files (TEMP Device Type) |
The TEMP device type associates a fileref with a temporary file stored in the same directory as the WORK data library. (See WORK Data Library.) Using the TEMP device type enables you to create a file that lasts only as long as the SAS session.
The FILENAME syntax for a TEMP file is
FILENAME fileref TEMP <options>; |
For example, this FILENAME statement associates TMP1 with a temporary file:
filename tmp1 temp;
Accessing TERMINAL Devices Directly |
FILENAME fileref TERMINAL <'terminal-pathname'> <options>; |
The terminal-pathname must be a pathname of the special file associated with the terminal. Check with your system administrator for details. Enclose the name in quotes. If you omit the terminal pathname, the fileref is assigned to your terminal.
For example, this FILENAME statement associates the fileref HERE with your terminal:
filename here terminal;The following FILENAME statement associates the fileref THATFILE with another terminal:
filename thatfile terminal '/dev/tty3';
Assigning Filerefs to Files on Other Systems (FTP and SOCKET access types) |
FILENAME fileref FTP 'external-file' <ftp-options>; |
FILENAME fileref SOCKET 'external-file' <tcpip-options>; |
FILENAME fileref SOCKET ':portno' SERVER <tcpip-options>; |
These access methods are documented in SAS Language Reference: Dictionary. Under UNIX, the FTP access method supports an additional option:
.netrc
file should be used to get the username and password. Consult the UNIX man
page for more information on the
.netrc
file. You cannot
specify the MACH option together with the HOST option in the FILENAME statement.chmod
for information on changing file permissions.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.