Main menu:

Site search

Categories

April 2018
M T W T F S S
« Mar   May »
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Tags

Blogroll

Archive for April 24th, 2018

Words to the wise – recreating Unix’s touch function in Windows

Creating an empty file. type nul >> your_file.txt copy /b filename.ext +,, The following works through a set of files in a directory and refreshes the date of them.  Useful if your company has a policy for deleting old files automatically, using Powershell. (ls your-file-name-here).LastWriteTime = Get-Date Get-ChildItem . * -recurse | ForEach-Object{$_.LastWriteTime = get-date} […]