How can I get path to recycle bin?

前端 未结 3 1138
有刺的猬
有刺的猬 2021-01-14 04:13

I would like to get the path to recycle bin. I searched online and found people use shell32 and get a list of files in recycle bin. However, I only want to get the path of r

相关标签:
3条回答
  • 2021-01-14 04:59

    here is the recycle bin directory C:\$Recycle.Bin...if you want to get the files un-hide the diretory...

    0 讨论(0)
  • 2021-01-14 05:00

    I had a server bogged down with over 590,000 files in the Recycle Bin. Any attempt to open the recycle bin caused the server to run out of memory and crash.

    This code worked from Powershell ISE. It took almost 30 minutes. No errors.

    Get-ChildItem -Path 'C:\$Recycle.Bin' -Force | Remove-Item -Recurse -ErrorAction SilentlyContinue
    
    0 讨论(0)
  • 2021-01-14 05:12

    Please check this link. This may help you to get the path to recycle bin.

    Here you can access the URL C:\$Recycle.Bin

    0 讨论(0)
提交回复
热议问题