I am using following sas code to read the file from the window host directory , is there any way that I can get the recently modified date and file size along with that ?
filename indir ftp cd= "&directory_window." ls user="&user_name_window."
host= "&window_host." pass="&password_window." debug;
data Files(where=(File_Name like "%akj%" and index(File_Name,'csv')));
infile indir;
input File_Name $300.;
put _INFILE_;
run;
- SAR