Hi
how can I create a text file in SAs with the text "The files has been uploaded succesfully" into a folder?
ods listing file="myfolder\textfile.txt"; data _null_; file print; text="The files has been uploaded succesfully"; put text; run; ods listing close;
Just use a PUT statement.
data _null_; file 'my_status_file.txt'; put "The files have been uploaded successfully"; run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.