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.

link|improve this question

feedback

15 Answers

up vote 68 down vote accepted

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|improve this answer
2  
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 '09 at 3:06
Note: the links on the above page don't seem to work for me but going to the project page sourceforge.net/projects/unxutils (as linked by Adam Davis below) allows you to download them fine. – Chris Feb 10 '11 at 10:28
@Chris: The link in the answer works for me. – Keith Thompson Feb 18 at 1:36
@KeithThompson: Ah, must have just been down temporarily. Thanks for the update. – Chris Feb 20 at 10:11
feedback

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|improve this answer
1  
This will be slow if the files are large. – mob Sep 18 '09 at 15:09
19  
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 '09 at 21:42
3  
Documentation for copy: technet.microsoft.com/en-us/library/bb490886.aspx – josmh Jun 3 '11 at 20:19
3  
type touch.bat is @echo off and next line copy /b %1 +,, - put it into C:\bin or what have you for your own scripts, and then you can use it like touch myfile.txt. – Lumi Jun 13 '11 at 13:37
feedback

@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|improve this answer
2  
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 '09 at 13:22
1  
This doesn't seem to even work in Vista... I wonder if they came to their senses? – quillbreaker Dec 8 '09 at 20:53
1  
Works in Windows 7 – Imran Dec 9 '10 at 5:37
1  
It worked for me even without commas: copy file.ext+ So the documentation is as far from actual behaviour as the behaviour is from any reasonable expectations. – Abgan Jul 17 '11 at 11:24
It worked in Windows Server 2008 but only if you are in the folder containing the file – FrinkTheBrave Dec 12 '11 at 14:48
feedback
type nul >>file & copy file +,,
  • Creates file if it does not exist.
  • Leaves file contents alone.
  • Just uses cmd built-ins.
  • Both last-access and creation times updated.

UPDATE

Gah! This doesn't work on read-only files, whereas touch does. I suggest:

:touch
if not exist "%~1" type nul >>"%~1"& goto :eof
set _ATTRIBUTES=%~a1
if "%~a1"=="%_ATTRIBUTES:r=%" (copy "%~1"+,,) else attrib -r "%~1" & copy "%~1"+,, & attrib +r "%~1"
link|improve this answer
It's a pity that copy cannot ignore the +r attribute the way xcopy does. Or, it's a pity that xcopy doesn't support the weird filename +,, syntax. – Abel May 6 at 20:05
feedback

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|improve this answer
feedback

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|improve this answer
2  
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. – Tall Jeff Sep 9 '08 at 10:58
when I try this (win7x64) I need 4 cygwin dll's in addition to touch.exe: cygiconv-2.dll cygintl-8.dll cygwin1.dll cyggcc_s-1.dll – matt wilkie May 27 '10 at 20:33
feedback

Native win32 ports of many unix commands, including touch.

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

link|improve this answer
feedback

If all you want is to change the file's last modified date (which was my case):

C:\> powershell  (ls your-file-name-here).LastWriteTime = Get-Date
link|improve this answer
PowerShell FTW. I mean, seriously, unix is cool but PS is cooler. – matt eisenberg Sep 9 '11 at 14:35
1  
You can update the last time write for multiple files / folders as well – ThiagoAlves Sep 22 '11 at 1:50
feedback

Try this one from CodeProject.

  • No need to install.
  • If you want, you can even modify the source.
link|improve this answer
feedback

I just published my implementation of touch for Win32 at http://www.touchdotexe.com

It's free and open source. It supports all options listed in the POSIX:2008 spec but I also added extra touches like Unicode support, a recursive mode and a verbose mode and even pause on exit for running without cmd.exe. It also lets you change files creation time.

Let me know what you think, my contact info is on the touch.exe website.

link|improve this answer
+1 for that one, which is an excellent one. – Benoit Mar 2 at 9:20
feedback

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|improve this answer
feedback

Try

fsutil file createnew new.txt 0

link|improve this answer
The FSUTIL utility requires that you have administrative privileges. -- and it doesn't behave like touch for existing files. – Keith Thompson Feb 18 at 1:39
feedback

The five alternatives mentioned above, plus three more not mentioned here, can be found on SuperUser: "Windows Recursive Touch Command"

link|improve this answer
feedback

how about simply :

"">>myFile

works just fine ;)

link|improve this answer
Except that it displays an error message and overwrites the existing file :) (neither of which is what touch does). – Andriy M Jan 3 at 6:35
A >> redirection won't overwrite an existing file. – Keith Thompson Feb 18 at 1:38
@KeithThompson: You are right, but this particular command won't update the modification timestamp either (not in Windows XP SP3, at least). And the error message will still be produced. (It could be removed, of course, only there's no point in fixing a command's side effect if it is its only effect.) Anyway, my first comment was about the original suggestion, which was "">myFile. – Andriy M Feb 20 at 0:44
feedback

copy NUL YourFile.txt

link|improve this answer
um.... doesn't that erase my file? – Jason S Aug 19 '10 at 23:29
No, it will create a file called YourFile.txt with size of 0. – mattsidesinger Nov 19 '10 at 18:32
Which will erase the file? I think possibly he only uses touch to create new files. – ddcruver Jan 26 '11 at 20:39
This is exactly the equivalent of the touch command in unix. Thank you. – Josh Jan 27 '11 at 16:15
2  
It will erase an exisiting file. touch does not do this. – bobbogo Feb 15 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

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