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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 1043 views
  • 0 likes
  • 2 in conversation