On Mon, 20 Oct 2008 11:28:59 -0700, Ray Parrish <(E-Mail Removed)> wrote:
>Another link offers the following code which is similar to the last link
>there -
>
>for /f "tokens=2-4 delims=/ " %%i in ('date/t') do (
> (set Dy=%%i)
> (set Mth=%%j)
> (set Yr=%%k)
>)
>I've modified the last line of his code below to show how to name your
>directory.
>
>mkdir c:\%Dy%-%Mth%-%Yr%
>
>This assumes you want it on the C drive, change the drive and pathname
>to what you need.
Thanks Boys, this got me where I needed to go.
>
>Later, Ray Parrish
|