BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mssh2712
Calcite | Level 5

Hi dear,

 

Can someone please help me DREAD function from basic with clear example....

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Here is an article with examples which could be helpful, it also has dopen, dnum, dclose functions with examples

 

http://www.mwsug.org/proceedings/2012/S1/MWSUG-2012-S128.pdf

Thanks,
Jag

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

Here is an article with examples which could be helpful, it also has dopen, dnum, dclose functions with examples

 

http://www.mwsug.org/proceedings/2012/S1/MWSUG-2012-S128.pdf

Thanks,
Jag
PGStats
Opal | Level 21
data files;
length file $128;
/* Define a filename pointing to the directory */
rc = filename("myDir", "C:\Users\PG\Documents\My SAS Files\9.4");
/* Open the directory, get directory id number */
dirId = dopen("myDir");
if dirId > 0 then do;
    /* dnum() : nb of files in directory */
    do i = 1 to dnum(dirId);
        /* Read the ith file name from directory */
        file = dread(dirId, i);
        if length(file) > 0 then output;
        end;
    /* Close the open directory */
    rc = dclose(dirId);
    end;
drop rc dirId i;
run;

proc print; run;
PG

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 3748 views
  • 0 likes
  • 3 in conversation