LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2007, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 22 Jan 2007 05:22:54 -0800
Reply-To:     sunny <praveencbharadwaj@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         sunny <praveencbharadwaj@GMAIL.COM>
Organization: http://groups.google.com
Subject:      FILE PROPERTIES
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset="iso-8859-1"

data diropts;

length optname $ 12 optval $ 40;

keep optname optval memcount;

rc=filename("mydir1" ,"F:\sourcetemp\praventest");

did=dopen("mydir1");

numopts=doptnum(did);

do i = 1 to numopts;

optname=doptname(did,i);

memcount=dnum(did);

optval=dinfo(did,optname);

output;

end;

run;

I used the cod to know the directoty name and number of filesin it. But to know the created date and the modified date .Please help me in my code.

Details:

I had a directory and i have the files in it . I need to know the name of the files and the created date and the modified date . For this i can know the number of files which are uploading .. Please help me as quickly as possible.


Back to: Top of message | Previous page | Main SAS-L page