BookmarkSubscribeRSS Feed
Bottoni
Fluorite | Level 6

I developed a program that verify if exist a file in a directory. If the file exist the program start to run.

 

I've researched how to verify the modification date of the file(Windows) but I'm not finding anything about that.

 

For exemplo: if there is a file called TESTE.TXT in my directory and the modification date is the same as current date my program start to run.

 

Is that possible to do? 

 

 

SAS CODE:

 

%LET TESTFILE = "F:/teste/TESTE.TXT";            

%MACRO FINDIT;  
 
	%DO %UNTIL(%SYSFUNC(FILEEXIST(&TESTFILE)));

%END;

			PROC SQL;
			CREATE TABLE WORK.TESTE_II AS 
			SELECT *
			FROM WORK.TESTE;
			QUIT;	
		
%MEND;                                         
    
%FINDIT;

 

1 REPLY 1

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 691 views
  • 0 likes
  • 2 in conversation