| Date: | Thu, 4 Nov 2010 16:07:08 -0600 |
| Reply-To: | Alan Churchill <alan.churchill@SAVIAN.NET> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Alan Churchill <alan.churchill@SAVIAN.NET> |
| Subject: | Re: Can SAS pull info about MS Window folders? |
| Content-Type: | text/plain; charset="us-ascii" |
I have an application that is pretty robust on getting file information
(including MS Office metadata on files). It is free and can be downloaded
here:
http://cid-8bca55fbca813d37.office.live.com/self.aspx/Applications/GetFileIn
fo.zip
Description:
http://www.sascommunity.org/wiki/GetFileInfo
Alan
Alan Churchill
Savian
Work: 719-687-5954
Cell: 719-310-4870
-----Original Message-----
From: Eva Pradhan [mailto:ep828322@ALBANY.EDU]
Sent: Thursday, November 04, 2010 11:19 AM
Subject: Re: Can SAS pull info about MS Window folders?
If you only want to get the list of subfolders or files in the main folder
this simple code comes handy-->
options noxwait;
x dir/b "C:\[Folder name]\*" > "C:\[Folder name]\[text file name].txt";
|