SONY WALKMAN の拡張子 3gp を、iTunes 用の m4a に変換する。
Get-ChildItem -include *.3gp -Recurse | ForEach { Move-Item -LiteralPath $_.FullName ($_.FullName -replace '\.3gp$' ,'.m4a') }
[ ] が入ったパスやファイル名が無ければ、 Rename-Item が使えるのだが、どうも上手くいかず、 Move-Item と –LiteralPath を使用する。