将文件夹的内容(下载)移动到recycle.bin文件夹中-Powershell

时间:2020-11-12 00:35:58

标签: windows powershell scripting

大家好,谢谢您的帮助,这就是我所做的。 主要目标是将“下载内容”移动到回收站中(如果它是文件夹)或其他内容,我不知道为什么运行它,并且在“桌面”>“回收站”中看不到它们之后,我在其中找到了这些项目c:$ Recycle.bin 你有什么建议? 再次感谢

#Requires -Version 5.1 
    param (
    [string] $path = "$env:HOMEPATH\Downloads\")
$myBool = Test-Path $path 
    if ($myBool -eq $false) 
    {
    "Path does not exist, Input the path to folder"
    } 
    else {
Get-childItem -path "$path" -Recurse  | Select-Object | Move-Item -Destination
    'C:\$Recycle.Bin'
    }

0 个答案:

没有答案