vote up 8 vote down star
5

I'm looking for a Windows port of the UNIX touch command. I don't want to install an entire MKS toolkit just for the one tool. Is there a native port available somewhere or a command in Windows that does the same thing and supports features like all files in a directory by wildcard?

Specifically I'm after changing mtime, ctime and atime for a project that reports ages of files based on... mtime, ctime and atime.

flag

10 Answers

vote up 23 vote down check

I've used and recommend unxutils which are native Win32 ports of lots of common Unix utilities. There is a touch command in there.

link|flag
Would upvote twice if I could. This is one of the tools I install after a fresh install, can't get out of the habit of typing ls at any command line I touch. – Jamie Penney May 29 at 3:06
vote up 6 vote down

If you want to touch the date stamp of a file using windows, use the following command at the command prompt:

copy /b filename.ext +,,

(where filename.ext is your files name)

link|flag
1  
This will be slow if the files are large. – mobrule Sep 18 at 15:09
2  
What is this doing? Where is it documented? (Google fails to index "+,,", and the MS site is not leading me in the right direction as searching on 'copy' turns up a lot of nothing useful.) I mean, it works great and I'll take that much for granted, but I am curious. – dash-tom-bang Oct 30 at 21:42
vote up 4 vote down

cygwin comes with touch. I know you mentioned that you don't want to install a whole framework, but cygwin is quite lightweight, and can be called from dos command window without the whole unix-like command line turned on.

You can also control what tools to install, so you could simply install the touch.exe file, and leave the rest of the framework.

link|flag
1  
To your point here, all you need to install is the touch.exe and cygwin.dll file in a directory to use the tool. There are no other dependancies relative to using cygwin based tools. – InSciTek Jeff Sep 9 '08 at 10:58
vote up 3 vote down

The GnuWin32 project has Windows ports of the Gnu versions of the Unix command line utilities.

It comes as a number of separate packages and you can install just the commands you need with no other dependencies. For touch you would need the CoreUtils package.

link|flag
vote up 3 vote down

Native win32 ports of many unix commands, including touch.

I've used it before and it works well - no installation, no DLLs, etc

link|flag
vote up 2 vote down

@dash-tom-bang:

Here is MSDN's explanation of the mysterious '+' and commas:

copy /b Source+,,

The commas indicate the omission of the Destination parameter.

The copy command supports merging multiple files into a single destination file. Since a blank destination cannot be specified using a space character at the command prompt, two commas can be used to denote that.

And this is MSDN's copy command reference: http://technet.microsoft.com/en-us/library/bb490886.aspx

link|flag
Now that's just messed up syntax. Seriously, what were they thinking? Also note the same documentation says "Destination: Required."... I'm amazed. – sth Nov 25 at 13:22
This doesn't seem to even work in Vista... I wonder if they came to their senses? – quillbreaker 14 hours ago
vote up 1 vote down

Try this one from CodeProject.

  • No need to install.
  • If you want, you can even modify the source.
link|flag
vote up 0 vote down

@Greg: @Adam: Thanks guys, I was also looking for the touch utility, but after some unsuccessfull searches we wrote our own. :-) I will definitely have a look on unxutils.

link|flag
vote up 0 vote down

I found a quick way to do it if you have vim installed (not great for big files, will open entire file then close it...)

vim foobar.txt +wq!

The "+" sets argument to run the following commands. "wq!" is "write, quite, force". This will open file, do a save, then close it immediately afterward.

link|flag
vote up 0 vote down

Hey Jason,

Your answer seems to be doing a trick. Thanks :)

But ideally it would NOT be as effective as 'touch'. Is nt it?

link|flag

Your Answer

Get an OpenID
or

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