Powershell Recursive Touch Command

Here's a quickie. Like the title says, use powershell to recursively 'touch' every file in the current directory.

Get-ChildItem . * -recurse | ForEach-Object{$_.LastWriteTime = get-date}

Comments

Popular posts from this blog

Database Projects, SQL Unit Tests, and TeamCity

Building nice XML from SQL Server Tables

String_Split function for Pre-2016 SQL Server Databases