Delete files from folder powershell

Get-ChildItem -Path C:\temp -File -Recurse | Remove-Item -Verbs Executing the above code forces PowerShell to search all subfolders and retrieve the entire list of files. The output below shows that the code was able to delete files in the top folder; however, it failed to recover files in the subfolders. ................
................