FILESYSTEM= System Option: z/OS

Specifies the default file system used when the filename is ambiguous.
Valid in: Configuration file, SAS invocation, OPTIONS statement, SAS System Options window
Category: File Control: EXTFILES
PROC OPTIONS GROUP= EXTFILES
Default: MVS
z/OS specifics: All

Syntax

FILESYSTEM=MVS | HFS

Required Arguments

MVS
specifies that the filesystem is native z/OS, which includes partitioned data sets (PDS, PDSE).
HFS
specifies the UNIX file system (UFS).

Details

The FILESYSTEM= system option specifies the file system that is used when the physical filename is valid in both file systems. For example:
options filesystem='HFS';
/* resolves to a UNIX file system */
/* path, such as /homedir/hfs.file */
filename myhfs 'hfs.file';