Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-30-2008, 05:17 PM
JohnB
 
Posts: n/a
Creating folder names

I know this isn't the DOS newsgroup but, I also know there are people here
that can answer this.

I need to create folder names based on the current date. The names need to
be in this format: DDMMYY
I've googled and found lots of examples, but none for that format.
Anyone know how do do that?

Thanks

Reply With Quote
  #2 (permalink)  
Old 06-30-2008, 05:57 PM
Pegasus \(MVP\)
 
Posts: n/a
Re: Creating folder names


"JohnB" <jbrigan@yahoo.com> wrote in message
news:uwLCMzs2IHA.4920@TK2MSFTNGP05.phx.gbl...
>I know this isn't the DOS newsgroup but, I also know there are people here
>that can answer this.
>
> I need to create folder names based on the current date. The names need
> to be in this format: DDMMYY
> I've googled and found lots of examples, but none for that format.
> Anyone know how do do that?
>
> Thanks


DOS could never do this sort of thing but the Command Prompt
under all Windows NT-based OSs can. The usual way is to
rearrange the various elements of the %date% variable. Unfortunately
this method often fails when used with different regional settings.
The batch file below will always return the correct value in %MyDate%.
1. @echo off
2. echo>c:\TempVBS.vbs wscript.echo day(date()) * 10000 + month(date()) *
100 + right(year(date()),2)
3. for /F %%a in ('cscript //nologo c:\TempVBS.vbs') do set MyDate=%%a
4. echo Date=%MyDate%


Reply With Quote
  #3 (permalink)  
Old 06-30-2008, 06:49 PM
JohnB
 
Posts: n/a
Re: Creating folder names

After I posted that I found this solution: MD
%date:~4,2%%date:~7,2%%date:~-2%

It's simple and works perfect.

but thanks anyway.


"Pegasus (MVP)" <I.can@fly.com.oz> wrote in message
news:%23omCwJt2IHA.4848@TK2MSFTNGP05.phx.gbl...
>
> "JohnB" <jbrigan@yahoo.com> wrote in message
> news:uwLCMzs2IHA.4920@TK2MSFTNGP05.phx.gbl...
>>I know this isn't the DOS newsgroup but, I also know there are people here
>>that can answer this.
>>
>> I need to create folder names based on the current date. The names need
>> to be in this format: DDMMYY
>> I've googled and found lots of examples, but none for that format.
>> Anyone know how do do that?
>>
>> Thanks

>
> DOS could never do this sort of thing but the Command Prompt
> under all Windows NT-based OSs can. The usual way is to
> rearrange the various elements of the %date% variable. Unfortunately
> this method often fails when used with different regional settings.
> The batch file below will always return the correct value in %MyDate%.
> 1. @echo off
> 2. echo>c:\TempVBS.vbs wscript.echo day(date()) * 10000 + month(date()) *
> 100 + right(year(date()),2)
> 3. for /F %%a in ('cscript //nologo c:\TempVBS.vbs') do set MyDate=%%a
> 4. echo Date=%MyDate%
>
>


Reply With Quote
  #4 (permalink)  
Old 06-30-2008, 08:47 PM
Pegasus \(MVP\)
 
Posts: n/a
Re: Creating folder names


"JohnB" <jbrigan@yahoo.com> wrote in message
news:%231zF8mt2IHA.6096@TK2MSFTNGP06.phx.gbl...
> After I posted that I found this solution: MD
> %date:~4,2%%date:~7,2%%date:~-2%
>
> It's simple and works perfect.
>
> but thanks anyway.


Yes, it works perfect until the order of digits changes. In some
countries the variable %date% returns Mon 06/30/2008
whereas in others it returns Mon 30/06/2008. The nice and
simple solution you found will trip over this difference.


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:35 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Child Trust Funds | Corset | Gas Suppliers | Credit Cards | Company Reports



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114