Skip to content

Instantly share code, notes, and snippets.

@matt40k
Created September 16, 2016 19:52
Show Gist options
  • Save matt40k/f6beaa9b7da571ebb760903f7c0351e0 to your computer and use it in GitHub Desktop.
Save matt40k/f6beaa9b7da571ebb760903f7c0351e0 to your computer and use it in GitHub Desktop.
Add .csv file extension
$folder = "C:\Users\MattSmith\OneDrive - Matt40k\Email"
$files = Get-ChildItem -Path $folder
foreach ($file in $files) {
#Write-Host $file
$oldName = "$folder\$file"
$newName = "$folder\$file.csv"
Rename-Item -Path $oldName -NewName $newName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment