Hi looking for code which can check for the latest file based on its created date and time, if it find latest file then it should execute the process flow.
Hint: the file can be of any sas readable format.
eg. if a.xlx was last modified/created Today's date at 3:13 pm then it should import and execute.
if not updated then ...it should terminate the execution.
First, using file data/time is not a good way of doing any process - it can easily be modified.
Second, define "SAS readable" as SAS can read almost any file type. What are the specifications for the process, what do you have written down in the functional design definition for the process. What agreement do you have on what data will be given? Just saying you want to do something on anything that appears is not going to work, ever. Clear process, clear documentation, fixed inputs, fixed outputs.
Assuming your on Windows:
filename tmp pipe 'dir "yourdirectory/*.xlsx" /b /o-d'; data _null_; infile tmp dlm="¬"; if _n_=1 then call execute('proc import datafile='||strip(_infile_)||' out=want; run;'); run;
This will use DOS to return a list of files sorted by date reversed, then on first one generate a proc import statement.
That being said, your code will fall over each run, the process is way to vague, Excel is a poor data medium. What happens if they post a file called xlsx but its not, or not in the right form, or don't post the file, or put a picture in it...
This code will read a directory and find the creation times for .xlsx files:
filename indir '<directory>';
data test;
dirid=dopen('indir');
do filenum=1 to dnum(dirid);
name=dread(dirid,filenum);
if upcase(scan(name,-1,'.')) ne 'XLSX' then
continue;
fileid=mopen(dirid,name);
if fileid=0 then do;
put _all_;
continue;
end;
Created=finfo(fileid,'Create Time');
output;
rc=fclose(fileid);
end;
keep name created;
run;
The created variable will be a datetime, but formatted according to your national language settings in Windows, you then have to find the correct informat for reading it into a numeric datetime. After that, it should be as simple as to sort by the date and take the last record.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.