Search notes:

SAS macro: directory_seperator

%macro directory_seperator;
/* Expands to a slash (/) on Unix systems and a
   backslash on Windows (\) */
   %qsysfunc(ifc(&sysscp = WIN,\,/))
%mend  directory_seperator;
Github repository about-SAS, path: /macros/directory_seperator.sas

See also

macros
&sysscp and &sysscpl.

Index