I developed a PowerShell script, and it\'s working absolutely fine. The only challenge is the files in the subfolders are not getting moved to the destination.
g
Use the -Recurse
option on the Get-ChildItem
command to get through to the files in the sub folders and then move each individually by piping the collection to Move-Item
Get-ChildItem -Path "C:\Test" -Recurse |
Where-Object {$_.LastWriteTime -lt (Get-date).AddDays(-31)} |
Move-Item -destination "C:\Dumps"
Here's a screenshot: