PowerShell - Functions
How can you modify this advanced function to confirm before making changes?
function Remove-ItemSafe {
[CmdletBinding()]
param(
[string]$Path
)
Remove-Item -Path $Path
}