function sys.path.file.del {
Write-Output $current_path
Write-Output "That is what you're deleting, be careful which files you delete."
$delconfirm = Read-Host "Are you sure you want to delete this file? Y/"
if ($delconfirm -eq "yes") {Remove-Item $current_path}
if ($delconfirm -eq "no") {
Write-Output "Please stop, and start the terminal again to continue."
$global:arc = Read-Host "Would you like to autorestart the terminal? Y/N"
<#
$global:ARC: global AutoRestart config prompt
#>
if ($global:arc -eq "y" -or $global:arc -eq "Y" -or $global:arc -eq "Y " -or $global:arc -eq "y " -or $global:arc -eq "Yes" -or $global:arc -eq "yes" -or $global:arc -eq "true" -or $global:arc -eq "True" -or $global:arc -eq "true " -or $global:arc -eq "True ") {
$global:arcp = Read-Host "Would you like the program to automatically restart the terminal in the future?"
}
}
}