* °ø¹éÀÌ Æ÷ÇÔµÈ µð·ºÅ丮¸íÀ» ¸ÅÅ©·Î¿¡¼ ó¸®Çϱâ; * Å«µû¿ÈÇ¥ 2°³·Î ó¸®; option mprint mlogic; %LET MYDIR0 = H:\SASDATA\02. BACK; %LET MYDIR = &MYDIR0\RateMonth201805*.txt; %PUT &MYDIR; %macro DATA_READ(BAS_MON); filename DIRLIST pipe "dir ""&MYDIR"" /b"; data dirlist ; infile dirlist lrecl=200 truncover; input file_name $100.; run; %mend; %DATA_READ(201805); ( Blank / Space / directory path ) |