Date: Wed, 10 Dec 2003 04:35:16 -0800
Reply-To: Bryan <bryan.munday@PAREXEL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Bryan <bryan.munday@PAREXEL.COM>
Organization: http://groups.google.com
Subject: Re: DOS Command Help
Content-Type: text/plain; charset=ISO-8859-1
JBosch1@PRDUS.JNJ.COM (Bosch, Jules [PRDUS Non J&J]) wrote in message news:<73FC8D4DCAD8D41190B300508B6980C202DFBAB7@rarusraexs13.prius.jnj.com>...
> Does anyone remember the DOS command to accomplish the following?
>
> Read an entire drive for any and all SAS V8 files and send the results to a
> fresh text file.
>
> With the following -
>
> dir *.sas7* > dir.out
>
> I can get the SAS V8 files on the drive at the top level but not the files
> down into the subfolders.
>
> TIA,
>
> Jules Bosch
Try:
dir /s *.sas7* > dir.out
Bryan
|