What is the command line way of sending files to the recycle bin?

45

4

Is there a command line program that can send files to the recycle bin? This is on XP and Vista.

justintime

Posted 2009-08-18T16:39:11.863

Reputation: 2 651

2Other than 'del'? – pelms – 2009-08-18T16:50:15.943

2Which OS are you using? – ChrisF – 2009-08-18T16:51:33.133

exited to add XP and Vista – justintime – 2009-08-18T16:59:41.137

11@pelms del permanently deletes it, not moves it to the recycle bin. – MiffTheFox – 2009-08-18T17:02:38.697

Why are you looking to move them to the recycle bin? If we can understand your thinking, there may be a better way. – EvilChookie – 2009-08-18T17:40:54.327

@EvilChookie, um, what? Are you asking why the Recycle Bin exists at all? Because sometimes you want to delete a file with the option of possibly restoring it. There’s no difference whether you do this from Explorer or the command-line. – Synetech – 2012-10-01T02:39:06.073

@Synetech: No, that's not what I was asking. I was confused as to why you would want to move a large batch files (since he's doing this via cmd) to the recycle bin - why not just move them to a temporary location? The recycle bin is not for file storage or version control. I've had a lot of bad experiences with users who felt this way (Oh, I can just restore it later) only to forget what's in there, and wipe it all away. That's like putting a fax into the rubbish bin and grabbing it out if you need it. Why not put it somewhere safe until you know you can throw it away? – EvilChookie – 2012-10-02T21:14:18.367

2Then you must think there is no reason to have the Bin at all. By your logic, why recycle files from Explorer instead of just deleting them permanently? You may not have seen a use, but they do exist. Just recently, I wanted to delete a pile of files from numerous folders, but wanted to double-check them before wiping them out. The only/easiest way to do it was to run a for loop from the command-prompt to send them to the bin, then I could see them all consolidated in one place to make sure that only the files I wanted to delete were in there and restore any incorrect files. – Synetech – 2012-10-03T00:32:21.933

Answers

33

CmdUtils has a utility called Recycle that does exactly that. [direct download]

More info:

To use the recycle command download the CmdUtils zip file and unzip the exe to your Windows folder. Adding them to the Windows folder would allow you to access the command globally without you having to specify the entire path to the executable. You can then start using the recycle command by typing in;

recycle filename.txt

You can also specify wildcards with the commands so typing in recycle *.txt will recycle any text files in the current directory. There is also a option to suppress the delete confirmation dialog by using the force flag with the command.

To delete a file without having to confirm is use the command

recycle –f filename.txt

The –f flag will tell the command to force a recycle without showing you the confirmation dialog.

Mark

Posted 2009-08-18T16:39:11.863

Reputation: 3 009

21

If you have powershell installed:

$sh = new-object -comobject "Shell.Application"
$ns = $sh.Namespace(0).ParseName("PATH\TO\FILE\TO\DELETE")
$ns.InvokeVerb("delete")

EBGreen

Posted 2009-08-18T16:39:11.863

Reputation: 7 834

1@BinaryMisfit finally that happens with Windows 10 – phuclv – 2017-01-18T03:57:12.403

2+1 Any powershell solution will get my vote. I hope the next Windows replaces cmd.exe with PowerShell. – BinaryMisfit – 2009-08-18T17:31:04.783

2I doubt that will happen for a very long time. :) – EBGreen – 2009-08-18T17:31:31.507

1That is far too slow, especially if recycling a lot of files (e.g., the PS counterpart to for /r %i in (foobar.tmp) do recycle "%i"). – Synetech – 2012-10-01T02:40:35.010

6

There is no built-in way to do this, but there are third-party tools that can. I checked my program-dump folder and found a few options. They all work the same (e.g., recycle filename.ext), but they vary in performance, so it depends on what your needs are (e.g., are you recycling a lot of files?)

  • MaDdoG Software’s Recycle is fast and has no output, but can throw a mysterious not-found error
  • EasyTools’ DeleteXP is slow because it displays the progress to the console, but if you redirect it to nul, then it is the fastest and reliable
  • Chris Yuen’s cmd-recycle is slowest, even when redirecting the (poorly formatted) output to nul

Synetech

Posted 2009-08-18T16:39:11.863

Reputation: 63 242

5

Can use external utility:

nircmd moverecyclebin *.tmp

Yura Shinkarev

Posted 2009-08-18T16:39:11.863

Reputation: 151

4

I've had this question for a long time -- I finally took the matters into my own hand and I rolled my own utility cmd-recycle

I took a look at Recycle.exe in CmdUtils. The thing about it is that it pops out the traditional "Are you sure" dialog when you recycle (which can be removed by adding the -f argument). My program just does it (since you can always undo) which I think is more suitable for scripting purposes.

kizzx2

Posted 2009-08-18T16:39:11.863

Reputation: 889

I just ran it on Windows Server 2008R2 and it doesn't work. – dthree – 2016-03-30T20:49:17.833

Doesn't work on Windows 7 either. I just get an error "The application could not be started..." and if i click for more info, I'm taken to microsoft.com :".NET Framework initialization errors: Managing the user experience".

– ashleedawg – 2019-06-15T11:34:12.003

1

Without using third party tools I don't believe there is a "command line way of sending files to the recycle bin". You can get the full path to recycle bin on a Windows 7-10 system like this:

::get current user sid
for /f "tokens=2" %%i in ('whoami /user /NH') do set UID=%%i
:: create full path to current user recycle bin in a variable
set recyclebin=%systemdrive%\$Recycle.Bin\%UID%

echo %recyclebin%

The problem is that if you just move a file in there it doesn't appear in the recycle bin. You will only be able to see it in a command prompt. The recycle bin is a special folder. The windows API method of moving items to the recycle bin renames the file and stores information about it in a proprietary info file or files depending on the version of the OS. The third party tools suggested in the answers above invoke these API methods that handle all of that for you.

Some more info here: https://dereknewton.com/2010/06/recycle-bin-forensics-in-windows-7-and-vista/

TroyK

Posted 2009-08-18T16:39:11.863

Reputation: 11

Welcome to Super User. Your answer seems to explain how to build the path to the currently logged on user's Recycle Bin, but it does not appear to explain how to use this information to send files to the recycle bin as requested by the OP. Please edit your post to include this last part. Thanks for contributing. – I say Reinstate Monica – 2017-01-18T04:35:19.360

This has almost all the information you'd need to write your own, short of actually presenting you with one, except mentioning the INFO2 and $I data which you'd need to manipulate. – can-ned_food – 2018-05-21T16:55:55.913

Let me know when the answer includes a cmd.exe or wsh.exe script which does so, and then I'll upvote! :-) Well, i guess wsh isn't technically applicable to the question, but the question is rather vague. – can-ned_food – 2018-05-21T17:36:21.403

1

Without external programs - deleteJS.bat. It uses Shell.Application invoke verb method. usage is simple:

call deleteJS.bat c:\someFile.txt
call deleteJS.bat d:\someFolder

npocmaka

Posted 2009-08-18T16:39:11.863

Reputation: 887

1

Just improving upon EBGreen code, here is a convenient 1 line code that can be easily put into any batch file to get the job done. (assuming the fully qualified filepath is in %1 batch file parameter)

echo (new-object -comobject Shell.Application).Namespace(0).ParseName("%~1").InvokeVerb("delete") | powershell -command - 

Note the trailing - it make the powershell command to accept command text from stdin

clueless

Posted 2009-08-18T16:39:11.863

Reputation: 11

1

I tried various programs for moving a file(s) to the recycle bin, but was unsatisfied with them for various reasons.

The main problem most have is the lack of decent status or error messages. Some just fail silently, so you think the program recycled something but in fact didn't do anything at all!

To remedy this, I've written a command line utility called bin-it that moves the specified file(s) to the Windows recycle bin. It supports wildcards and provides full status and error reporting. If something goes wrong, you'll know about it!

It's completely free and can be downloaded from here as binit.zip:
http://www.akiwi.co.uk/utilities.html

akiwi

Posted 2009-08-18T16:39:11.863

Reputation: 11

I recommend you change the name. “Bin It” makes me think of something like an ASCII->binary conversion. – can-ned_food – 2018-05-21T17:35:04.800

Just downloaded binit - thanks! One suggestion (though I note the binary has not been updated since 2015): obey the standard "/?" help listing for DOS/Windows command line programs. Was alarmed when I typed "binit /?" and got the reply, "Recycling c:?, [OK]" - although nothing happened. – cniggeler – 2020-01-19T03:03:57.907

0

You can try RecycleIt. It will send files to the Windows Recycle Bin via command line.

EXAMPLE USAGE:

recycleIt.exe C:\temp\example.txt /quit

NOTE: You need to add the "/quit" or it will pop a window that stays open. This could be problematic for headless console sessions.

Michael Weiner

Posted 2009-08-18T16:39:11.863

Reputation: 1