BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
bhanuprakash
Obsidian | Level 7

Hi Team,

 

Can you please provide your suggestion how we can extract XPT files created date?

1 ACCEPTED SOLUTION
3 REPLIES 3
Ksharp
Super User
data x;
rc=filename('x','c:\temp\class.xls');
fid=fopen('x');
do i=1 to foptnum(fid);
  foptname=foptname(fid,i);
  finfo=finfo(fid,foptname);
  output;
end;
run;
bhanuprakash
Obsidian | Level 7

Thank you so much for the Example.