Is there a way to find the information about owner of sas file in Windows SAS? I tried the following code But it doesnt give any information about the owner of code.
data info;
length infoname infoval $300;
drop rc fid infonum i close;
rc=filename('abc','C:\c-ae.sas');
fid=fopen('abc');
infonum=foptnum(fid);
do i=1 to infonum;
infoname=foptname(fid,i);
infoval=finfo(fid,infoname);
output;
end;
close=fclose(fid);
run;
Is there any way I can get information about the owner of the code/file.