Within Powershell I want to automate the process of changing the file name of a group of files and copy the latest version of a similar file to that directory.
Delete oldest
(file3.bak) --> noneIncrease filename of current files in backup directory
(file1.bak) --> (file2.bak) (file2.bak) --> (file3.bak)Copy latest version of file from another directory to this backup directory
(newestfile.txt) --> (file1.bak)
This is as far as I have gotten and am stuck:
$path = "c:\temp"
cd $path
$count = (get-childitem $path -name).count
Write-Host "Number of Files: $count"
$items = Get-ChildItem | Sort Extension -desc | Rename-Item -NewName {"gapr.ear.rollback$count"}
$items | Sort Extension -desc | ForEach-Object -begin { $count= (get-childitem $path -name).count } -process { rename-item $_ -NewName "gappr.ear.rollback$count"; $count-- }