saslovime 发表于 2010-1-18 10:02 
请问哪位高手可以解释下下面这行sas程序,M_SOURCE_FULLPATH是路径名。
FILENAME FLIST PIPE "DIR &M_SOURCE_FULLPATH./B";
谢谢啦
Do you notice there is a "&" before M_SOURCE_FULLPATH.
&M_SOURCE_FULLPATH. is a macro variables. It is also called a symbolic variable.
Its value will be resovled when it gets compiled.
You may define with %let statement.
For example,
%let M_SOURCE_FULLPATH=c:\mysas\project;