vote up 1 vote down star

I have some files which I want to change the time created/modified to now as they have been copied from a computer in a different timezone and they appear to be created in the future which is causing a problem.

I want to be able to update all the files in a directory with a single command.

I think it's possible to do it with COPY in DOS but I can't work out the arguments I need.

Using Windows Server 2003 by the way.

flag

76% accept rate
Not programming related, please check out stackoverflow.com/questions/321618/… for other forums where this will be best answered. – Adam Davis Mar 31 at 13:23
Command Line scripting sounds like programming to me... – GateKiller Mar 31 at 13:32
@Adam, I don't agree, scripts are programs too – Patrick McDonald Mar 31 at 13:33
Timestamps play a key role in build process, unix touch is a tool very frequently used by developers. I think knowing how to do the same on Win platform is valid programming questions. – Suma Mar 31 at 13:36
I'm sorry, where does it say this is a scripting question? This is an OS question, or a command line question. It's not programming related. – Adam Davis Mar 31 at 13:44
show 10 more comments

closed as not programming related by JaredPar, Adam Davis, Rich B, R. Bemrose, George Stocker Mar 31 at 14:37

4 Answers

vote up 4 vote down

Ok, thanks for the feedback. I found the one liner I was looking for.

  copy * /B+ ,,/Y
link|flag
vote up 0 vote down

Or you can use PowerShell script on Win2k3 servers.

http://www.microsoft.com/technet/scriptcenter/resources/qanda/feb07/hey0213.mspx

link|flag
vote up 0 vote down

You could use the UNIX tool touch.exe. It is available for Windows as part of unxtools or Cygwin:

http://unxutils.sourceforge.net/

http://www.cygwin.com/

link|flag
I have though (and wrote) about unxutils as well, however it seems they do not contain the touch. – Suma Mar 31 at 13:34
Oh yes, my mistake, thanks for pointing it out. – Martin Fido Mar 31 at 14:31
vote up 2 vote down

You could install cygWin and run touch * on your directory from it. You can also download a windows implementation of the touch tool, e.g. from SoftPedia Unix Touch

Other alternatives include (merged from other answers):

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.