문제

Desired functionality

file1.txt ->  file1.txt.deploy
file2.txt ->  file2.txt.deploy

Attempt #82

Get-ChildItem | ForEach-Object {
  Rename-Item -NewName { $_.Name + ".deploy" }
}

Cannot evaluate parameter NewName because its argument is specified as a script block and there is no input

What am I doing wrong?

도움이 되었습니까?

해결책

If you use ForEach-Object you need to pipe in the actual object with $_:

Get-ChildItem | ForEach-Object {
  Rename-Item $_ -NewName { $_.Name + ".deploy" }
}

Or just skip the ForEach-Object as BartekB mentions in comments:

Get-ChildItem |  Rename-Item -NewName { $_.Name + ".deploy" }
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top