Windows equivalent of the Linux command 'touch'?

179

64

What do you use when you want to update the date-modified field of a file on Windows?

  1. commands accessible via C++, .NET, C#, or something native to Windows (Vista preferably)
  2. tools/applications preferably free, and if possible open source as well

Edit: there is already a page for applications as pointed out by CheapScotsman here.

If anyone knows how I can do this via C++, C#, WSH or something similar, well and good, else I would think everything else is covered in the linked question.

facepalmd

Posted 2009-07-21T21:44:38.857

Reputation: 624

http://stackoverflow.com/questions/210201/how-to-create-empty-text-file-from-a-batch-file mentions a load, including REM.>a – barlop – 2015-06-17T00:30:53.803

The four alternatives mentioned above, plus four more not mentioned here, can be found in the answer to a similar question: "Windows Recursive Touch Command"

– JdeBP – 2011-02-28T19:58:25.003

https://www.npmjs.com/package/touch-for-windows works for me – Piotr Migdal – 2020-01-29T19:46:17.670

Answers

363

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 file's name). The +,, is a special flag to copy telling it to simply update the date/time on the file:

* Changing the time and date of a file

If you want to assign the current time and date to a file without modifying the file, use the following syntax:

copy /b Source+,,

The commas indicate the omission of the Destination parameter.

Edit based on comments by Lumi and Justin: put this in a batch file, eg. touch.cmd

@COPY /B %1+,, %1

This works even if the file is not in the current directory (tested on Windows 7).

Gish Domains

Posted 2009-07-21T21:44:38.857

Reputation:

2This will be slow if the files are large. Actually, it is not slow, it does it in less than one second, and does not even light up the HD-access LED. Clearly the copy command in Windows has the touch command specially coded in, per the Technet article. +1 Great find; I never knew this one. – Synetech – 2015-09-15T00:48:11.613

One small tiny little problem: it does copy all the files; it places them into CWD. – Violet Giraffe – 2017-08-31T08:46:45.383

1Windows XP doesn't like copying the file over itself from outside CWD. For this, use pushd "%~dp1%" before the CWD "touch", and popd afterward. (In case you're stuck supporting one of the millions of remaining XP machines...) – Tydaeus – 2017-09-21T19:50:07.607

This did not work for me at all unless I added additional code to CD to the dir and CD back. Without that, even the copy that is created in the local directory still had the original timestamp despite the +,, flags. I used the powershell 1-liner instead and it worked perfectly – user9399 – 2019-02-18T16:12:23.627

This is not an adequate replacement for the touch command, as it doesn't create the file if it doesn't exist. – Gabriel Morin – 2019-02-21T17:34:22.510

this is not as useful - the most important feature, copying the timestamps from file1 to file2 with touch file2 -r file1, isn't handled. – Tomas – 2019-09-07T13:36:28.963

4This will be slow if the files are large. – mob – 2009-09-18T15:09:18.947

15type 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 – 2011-06-13T13:37:47.183

18In Win7 this won't work if you are not in the folder containing the file. It will create a copy in the current working directory. – None – 2012-06-27T07:48:23.640

@Jamie yes, I also meet this problem. – netawater – 2013-01-11T03:22:28.617

4@mob Note this was not slow on a large file. I used it on a >1GB file on a network drive and it returned immediately (and worked). – Chadwick – 2013-01-23T19:51:46.697

@Jamie : Not related to Win7, applies to all OS. You need to be in the current directory as ,, will take the very same file with no path information (see technet link from josmh comment) – Mat M – 2013-06-06T11:53:18.463

@Gish Domains: would you like to promote your answer as Community wiki. I think it is very helpful, although not marked as answer. – Mat M – 2013-06-06T12:23:32.397

2

I created a GIST combining this answer with this one to automatically push/pop destination directory

– TJB – 2013-08-27T17:55:39.400

1@TJB batch files might consider starting with @echo OFF – drzaus – 2013-11-13T15:52:28.113

6If you need to do this in a remote folder (UNC path) - you must specify the destination to the copy command as well - copy /b Source+,, Source - where Source includes the full path to the file – Justin – 2013-12-13T22:37:18.867

6+,,: http://blogs.msdn.com/b/oldnewthing/archive/2013/07/10/10432879.aspx – thirtydot – 2014-05-08T01:33:34.393

162

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

Greg Hewgill

Posted 2009-07-21T21:44:38.857

Reputation: 5 099

gnuwin32 has it. but indeed, gnuwin32's also fails for unicode characters. – barlop – 2016-01-23T04:37:46.803

1

Update from 2017 In Windows 10 we can use the Linux subsystem for windows, which installs bash. No need for cygwin, MinGW, unxutils or any other partial unix to windows ports. https://docs.microsoft.com/en-us/windows/wsl/install-win10

– Davos – 2018-03-26T10:39:05.647

@Davos have you tried that on any file other than your (usually unprivileged) user context? Because technically the userland side of LXSS is running as unprivileged user. – 0xC0000022L – 2019-08-21T10:22:46.810

@0xC0000022L not sure what you mean in the context of the touch command. It's like anything else in nix environments, you can either do it or you can sudo it, or you can't because you don't have privileges. – Davos – 2019-08-21T11:13:12.060

@Davos user context! Start whatever WSL flavor you have installed. Now I am assuming you have drive C: and it's NTFS (because the %SystemDrive% has to be). Inside your WSL shell prompt, execute the following: touch /mnt/c/Windows/System32 (of course feel free to try that as well with other commands and go right ahead and try it with sudo/su, too). Everything in WSL (v1) is running as your NT user and has the same privileges, no matter if you use sudo or su within WSL. It's a sandboxed environment, comparable to unprivileged LXD/LXC containers. Very limiting. You see now? – 0xC0000022L – 2019-08-21T12:16:11.970

1

These days it's literally easier to install the code-signed package Git for Windows and use the touch from there, as in any case you can use it in any (NT) user context, whereas your suggestion limits you entirely to files and folders owned by the user starting the WSP app (or at least those only accessible with the appropriate ACEs set to modify timestamps). The above port should also work for the same reason. Your method with WSL will only work inside the constraints of the WSL sandbox ...

– 0xC0000022L – 2019-08-21T12:23:41.930

Sure do that then, the MingGW that comes with git for windows is certainly a decent option. It's arguable that the WSL v1 is doing it right though, I mean what are you doing creating files in System32 for? The windows OS is supposed to be privileged kernel space and the ability to clobber it with normal user privileges is a bizarre design decision. There are some fundamental differences between FS permissions on linux vs windows which exposes the fact that it's the norm for win users to run as default admins. A clear impedance in reconciling, for example, docker file mounts or in the WSL – Davos – 2019-08-22T05:59:33.567

"Very limiting", depends on what you're up to doesn't it. – Davos – 2019-08-22T06:02:37.453

6As almost every unix-to-windows port ever, this fails to work with unicode characters in the filenames outside of the encoding set as the default for non-unicode programs. Test filename that will trip up every such tool: "test тест τεστ.txt" – RomanSt – 2014-04-29T03:06:13.623

99

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

ThiagoAlves

Posted 2009-07-21T21:44:38.857

Reputation: 1 111

Unix touch is great for it's simplicity. – display_name – 2016-04-27T04:48:46.883

This worked perfectly. From a batch file, I could use a one-liner if I just surrounded the powershell command with double-quotes: powershell "(ls your-file-name-here).LastWriteTime = Get-Date" or alternatively to set the date to another file's: powershell "(ls your-file-name-here).LastWriteTime = (ls the-other-file-name-here).LastWriteTime" – user9399 – 2019-02-18T16:13:43.603

9PowerShell FTW. I mean, seriously, unix is cool but PS is cooler. – matt – 2011-09-09T14:35:44.930

1You can update the last time write for multiple files / folders as well – None – 2011-09-22T01:50:35.753

12This will work only on one file. For multiple files: ls * | ForEach-Object {$_.LastWriteTime = Get-Date} – Eli Algranti – 2012-10-02T04:52:49.537

2If you want to do it recursively, this works pretty well: gci -recu -inc "." | % { $_.LastWriteTime = Get-Date } – BrainSlugs83 – 2013-01-15T01:43:30.257

Not sure why, but the asterisks aren't showing up in my above comment -- the "." should be double-quote, asterisk, dot, asterisk, double-quote (you know, "star-dot-star".) Anyway, tried to lookup the help to figure out why, but now it's not editable. Darn. – BrainSlugs83 – 2013-01-15T01:50:27.540

6@BrainSlugs83: use backticks for code:gci -recu -inc "." | % { $_.LastWriteTime = Get-Date }` – alldayremix – 2013-06-29T00:44:54.760

1touch sets the time to a specific one or "now" if none is given. .LastWriteTime is the same, so you can do something like .LastWriteTime = '12/30/99 23:59'.

@matt: most likely, you're not very familiar with the *nix shell; PS still seems to have a long way to go --e.g., sed? grep? vi? :p

EDIT: Why are my Shift+Enter ignored? How to add new lines? – void – 2014-03-21T15:08:56.827

58

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"

bobbogo

Posted 2009-07-21T21:44:38.857

Reputation: 1 002

Unfortunately this does not work (at least not in Windows 7). It seems that the command interpreter does not update the timestamp of the destination of a redirection if the file is not actually modified (i.e., there is not data to redirect). – Synetech – 2015-09-15T00:57:08.477

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 – 2012-05-06T20:05:54.657

33

@dash-tom-bang:

Here is Technet'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 Technet's copy command reference: http://technet.microsoft.com/en-us/library/bb490886.aspx

Faredoon

Posted 2009-07-21T21:44:38.857

Reputation: 430

So:

copy foo.txt+bar.txt qux.txt concatenates the two files and writes the result to the third file; copy foo.txt+bar.txt - if the destination file is omitted, it writes the result to the first file in the list; copy foo.txt+,, - concatenate file with "nothing" (just sets the last modification time), copy foo.txt wouldn't work; /b parameter means to treat the file as a binary file.

I have also verified that running the command on a very large file returns immediately. – Mike Rosoft – 2020-02-24T13:13:57.497

17Now that's just messed up syntax. Seriously, what were they thinking? Also note the same documentation says "Destination: Required."... I'm amazed. – sth – 2009-11-25T13:22:39.280

1This doesn't seem to even work in Vista... I wonder if they came to their senses? – quillbreaker – 2009-12-08T20:53:50.880

1Works in Windows 7 – Imran – 2010-12-09T05:37:31.397

5It 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 – 2011-07-17T11:24:27.247

2It worked in Windows Server 2008 but only if you are in the folder containing the file – FrinkTheBrave – 2011-12-12T14:48:00.823

23

If you feel like coding it yourself, .NET offers the File.SetLastAccessTime, File.SetCreationTime and File.SetLastWriteTime methods.

Fredrik Mörk

Posted 2009-07-21T21:44:38.857

Reputation: 455

21

here is a recursive version using powershell... this will change the last modified time for all files and subdirectories, and files within this directory's subdirectories

ps c:myDir> Get-ChildItem . * -recurse | ForEach-Object{$_.LastWriteTime = get-date}

roger

Posted 2009-07-21T21:44:38.857

Reputation: 311

2Less verbose but yet using only standard Powershell shorthands: ls * -recurse | % { $_.LastWriteTime = Get-Date } – Jonas – 2017-04-05T09:51:03.843

15

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.

serg10

Posted 2009-07-21T21:44:38.857

Reputation: 341

2To 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 – 2008-09-09T10:58:04.880

1when 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 – 2010-05-27T20:33:28.093

15

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.

Dave Webb

Posted 2009-07-21T21:44:38.857

Reputation: 10 126

15

I tried this to create an empty file in my batch script. You can use this:

ECHO text>file1.txt

pkm

Posted 2009-07-21T21:44:38.857

Reputation: 258

4@Alex This is unrelated, but that windows error is because the file starts with a period. There's a strange hack to get around that in Windows Explorer: make the file end with a period too. So type .gitignore. and when you press enter Windows removes the trailing period. Crazy, but it works. – Brad Cupit – 2015-04-23T15:26:24.147

1I wish that I could give this enough upvotes that it would catch the big players in popularity. – Jonathan Mee – 2016-03-03T16:56:28.413

3This doesn't create an empty file though, file1.txt has "text" in it. – Joshua Meyers – 2017-03-15T22:06:12.637

3This is BY FAR the best quick method.. I just needed to create a .gitignore file, and Windows 7 keeps complaining "must enter a filename" etc etc. echo pie>.gitignore worked a treat - thanks! – None – 2014-03-07T04:02:35.663

14

Here's a simple regfile I wrote to add right-click "touch" in Windows explorer. It'd be easy to script it, too, since it just calls:

cmd.exe /c copy %1+nul %1 /by

Jon Galloway

Posted 2009-07-21T21:44:38.857

Reputation: 471

Works on Win7. Does not work on WinXP: file time remains the same after executing "copy". – Egor Skriptunoff – 2016-08-25T19:26:52.333

Ack! Zip file inaccessible (something about brinkster22.com needing to be the referring site). Jon, can you update this? – Dan7119 – 2011-03-28T14:22:07.900

And don't forget copy nul some_file to create an empty file (which is what I see touch most often used for). – Joey – 2009-08-27T06:28:49.827

13

Native win32 ports of many unix commands, including touch.

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

Adam Davis

Posted 2009-07-21T21:44:38.857

Reputation: 4 327

11

Try this one from CodeProject.

  • No need to install.
  • If you want, you can even modify the source.

Prakash

Posted 2009-07-21T21:44:38.857

Reputation: 211

2While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Yan Sklyarenko – 2014-06-05T14:32:40.053

9

You could also install Cygwin which gives you Touch as well as a plethora of other *NIX commands.

jamesaharvey

Posted 2009-07-21T21:44:38.857

Reputation: 101

And cygwin without mintty is pretty lame. – Ahe – 2010-01-25T14:30:10.680

2can't live on windows without cygwin. – jweede – 2009-09-10T12:32:52.283

5

There are Windows ports of many Unix utilities. Have a look at unxutils or GnuWin32 projects.

VladV

Posted 2009-07-21T21:44:38.857

Reputation: 121

5

From a similar question on Stack Overflow.

For updating timestamps (ignoring the other functionality of touch), I'd go with:

copy /b filename.ext +,,

Paused until further notice.

Posted 2009-07-21T21:44:38.857

Reputation: 86 075

1This is a repeat of Gish Domains's answer from 2 yrs prior, without the explanation. – fixer1234 – 2016-02-20T00:39:07.177

4

CheapScotsman

Posted 2009-07-21T21:44:38.857

Reputation: 129

Thanks. I missed that in my search which resulted in loads of touch screen phone related stuff. Probably needs a better tag label I guess. – facepalmd – 2009-07-21T21:52:01.197

4

from the website:

Funduc Software Touch is a free 'touch' utility that allows you to change the time/date &/or attribute stamps on one or more files. In addition, FS Touch can add/subtract a specified number of seconds from the existing file time. You can specify which file(s) and/or subdirectories to change via 'complex file masks'. The program can be run from interactively or the command line. New to version 7.2 is a command line switch to change file modified time stamp +/- the specified number of seconds.

FS Touch runs on Windows XP, Vista, Windows 7, & Windows 8.

Marek

Posted 2009-07-21T21:44:38.857

Reputation:

4

This content can be saved to a reg file. This will add a right click context menu for all files with the "Touch File" ability (tested on Windows 7). Copy all the following lines to reg file. Run the file and approve the question. Right click on any file (or multiple files) - "Touch File" option is now available.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell]

[HKEY_CLASSES_ROOT\*\shell\Touch File]

[HKEY_CLASSES_ROOT\*\shell\Touch File\command]
@="cmd /C copy /b \"%1\" +,,"

SharonBL

Posted 2009-07-21T21:44:38.857

Reputation:

3

If you are using git for one or more projects, the mingw based git-bash for Windows has the touch command. I want to thank @greg-hewgill for pointing out to me that 'nix utilities exist for windows, because it was that which put me on the idea to try touch in git-bash.

Superole

Posted 2009-07-21T21:44:38.857

Reputation: 1 459

3

in PowerShell try:

ni fileName.txt

NI is an alias of the New-Item cmdlet.

Monfa.red

Posted 2009-07-21T21:44:38.857

Reputation: 101

1Welcome to SuperUser. Thanks for posting! Can you add a link to a website that provides more information about the ni command, and perhaps describe more what the command does? – hBy2Py – 2015-06-17T02:17:08.213

1The New-Item cmdlet can't be used to update the time stamp of an existing file. – I say Reinstate Monica – 2015-06-17T02:56:52.797

While it doesn't update timestamp, it does create a new file, which is what touch does. +1 from me. – MikeMurko – 2017-06-02T16:59:26.553

2

I wanted the 'touch' feature of cloning / duplicating the file dates from another file, natively, and be usable from a batch file.

So 'drag and drop' video file on to batch file, FFMPEG runs, then 'Date Created' and 'Date Modified' from the input file gets copied to the output file.

This seemed simple at first until you find batch files are terrible at handling unicode file names, in-line PowerShell messes up with file name symbols, and double escaping them is a nightmare.

My solution was make the 'touch' part a seperate PowerShell script which I called 'CLONE-FILE-DATE.ps1' and it contains:

param
(
  [Parameter(Mandatory=$true)][string]$SourcePath,
  [Parameter(Mandatory=$true)][string]$TargetPath
)

(GI -LiteralPath $TargetPath).CreationTime  = (GI -LiteralPath $SourcePath).CreationTime
(GI -LiteralPath $TargetPath).LastWriteTime = (GI -LiteralPath $SourcePath).LastWriteTime

Then here is example usage within my 'CONVERT.BAT' batch file:

%~dp0\ffmpeg -i "%~1" ACTION "%~1-output.mp4"

CHCP 65001 > nul && PowerShell -ExecutionPolicy ByPass -File "%~dp0\CLONE-FILE-DATE.PS1" "%~1" "%~1-output.mp4"

I think the PowerShell is readable, so will just explain the batch speak:

%~dp0 is the current directory of the batch file.

%~1 is the path of the file dropped onto the batch without quotes.

CHCP 65001 > nul sets characters to UTF-8 and swallows the output.

-ExecutionPolicy ByPass allows you to run PowerShell without needing to modify the global policy, which is there to prevent people accidentally running scripts.

WhoIsRich

Posted 2009-07-21T21:44:38.857

Reputation: 464

2

Save the following as touch.bat in your %windir%\system32 folder or add the folder in which it is saved to your PATH environment variable:

@echo off
if %1.==. goto end
if not exist %1 goto end
copy /b %1 +,, > nul
echo %1 touched!
:end

Sample usage:

touch *.cpp
touch somefile.c

Reference: Microsoft KB 69581

Tim Partridge

Posted 2009-07-21T21:44:38.857

Reputation: 295

Excellent! No external stuff, just copy. And of course most of us need it as a batch stript:) – Bogdan Gavril MSFT – 2013-03-27T22:07:29.693

2

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, quit, force". This will open file, do a save, then close it immediately afterward.

Jason

Posted 2009-07-21T21:44:38.857

Reputation: 191

Pointlessly complex, bulky and non-portable. -1 – MD XF – 2017-05-10T17:45:21.997

1

Well, if you really want to have the touch command available, you can put this in a batch file called touch.bat and stick it in C:\Windows:

TYPE NUL >>%1

Simple enough.

MD XF

Posted 2009-07-21T21:44:38.857

Reputation: 214

This method does NOT update the Modified Time on the following platforms: Windows Server 2012 R2, Windows Server 2016, Windows 10 – Nate – 2019-09-27T16:13:38.897

1

Try

fsutil file createnew new.txt 0

Peter Hacke

Posted 2009-07-21T21:44:38.857

Reputation:

3The FSUTIL utility requires that you have administrative privileges. -- and it doesn't behave like touch for existing files. – Keith Thompson – 2012-02-18T01:39:43.490

1

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

JdeBP

Posted 2009-07-21T21:44:38.857

Reputation: 23 855

2While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Yan Sklyarenko – 2014-06-05T14:32:11.823

1

This is slightly unrelated to the original question, but I find this very useful on Windows due to the GUI.

I'm using the TouchPro utility which provides a GUI (builds into explorer shell):

http://www.jddesign.co.uk/products/touchpro/touchpro.htm

rustyx

Posted 2009-07-21T21:44:38.857

Reputation: 461

0

I appreciate this is an old question, I just discovered touch on my Windows 10 system. I downloaded and installed Git from here (I think) and it looks like touch and various other utilities are in the bin folder.

0909EM

Posted 2009-07-21T21:44:38.857

Reputation: 101

0

Because I needed this also and a number of other things, I've created my own shell extension that does this: AllSorts I've also open-sourced this here

Stijn Sanders

Posted 2009-07-21T21:44:38.857

Reputation: 2 226

0

The Unix people fixed the general problem of updating the file date of any file with the touch command. However, for Windows, sometimes a simpler method is possible for special cases.

I need to update the timestamp of an application shortcut in Windows 8.1 in order to make changes to the background color of the Application Tile visible, see this SO question. Rather than implementing one of the clever tools above, I find it easier to edit the comment field of the shortcut. Most people leave this empty, but of course, a useful comment is quickly conceived. And if a comment exists, adding or removing a final period does never harm.

Roland

Posted 2009-07-21T21:44:38.857

Reputation: 299