You do a google search for "touch" but you aren't
looking for porn...
Then you find the thing you are looking for, but realize it will be quicker
to just rewrite the tool yourself...
namespace touch
{
using System;
using System.IO;
class Touch
{
[STAThread]
static void Main(string[] args)
{
DirectoryInfo di = new DirectoryInfo(".");
TouchDir(di, args[0]);
}
static void TouchDir(DirectoryInfo dir, string pattern)
{
foreach (FileInfo fi in dir.GetFiles(pattern))
{
Console.WriteLine(fi.FullName);
fi.CreationTime = fi.LastWriteTime = fi.LastAccessTime = DateTime.Now;
}
}
}
}