I have a folder with a bunch of textures and things that I need to rename to lower case, is there any way to rename all the files and folders of files in this folder to have lower case names at once? edit: this is different from the similar post because the command from that answer will only do it for one folder at a time, not all the folders in the top folder
Asked
Active
Viewed 3,703 times
4 Answers
2
I found this in a comment on the simalar post that at first i thought only renamed things in the foler its executed in. It seems to work
Get-ChildItem "C:\path\to\folder" -recurse |
Where {-Not $_.PSIsContainer} |
Rename-Item -NewName {$_.FullName.ToLower()}
Bluesandbox
- 49
0
Try this powershell code:
Get-childItem "Filepath" -Recurse | Rename-Item -NewName {$_.Basename.tostring().tolower() + $_.extension}
This will recursively rename all files and folders in "Filepath" to lower case.
wasif
- 9,176
0
Based on Is there a way to batch rename files to lowercase, here is a formulation that does files and folders recursively:
for /f "Tokens=*" %f in ('dir /l/b/s') do (rename "%f" "%f")
harrymc
- 498,455
0
PowerShell: Verbose, Files
$Source = 'c:\TopFolder'
( Get-ChildItem $Source -File -Recurse ) | Rename-Item -NewName { $_.Name.ToLower() }
Key-Banger, Files:
(gci 'c:\TopFolder' -af -r) | ren -new { $_.Name.ToLower() }
For folders, to avoid Source/Destination errors, you have to rename to a temp value as an intermediate step. Here's one way:
gci -ad -Recurse | %{
$Lower = $_.Name.ToLower()
$_ | ren -new {(Get-Date).Ticks } -passthru | ren -new {$Lower}
}
Keith Miller
- 10,694
- 1
- 20
- 35