Skip to content

Instantly share code, notes, and snippets.

@MovGP0
Last active July 1, 2020 11:21
Show Gist options
  • Save MovGP0/f353ffe7be1f58de9683d784906a25ba to your computer and use it in GitHub Desktop.
Save MovGP0/f353ffe7be1f58de9683d784906a25ba to your computer and use it in GitHub Desktop.
Copy Files into folder by year
[int]$year = 2019;
ls * -File | where { $_.lastwritetime.year -eq $year } | mv -Destination ".\${$year}\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment