How can I delete all unversioned/ignored files/folders in my working copy?

ignore, svn, tortoisesvn

Solution

Using TortoiseSVN:

- right-click on working copy folder, while holding the shift-key down

- choose "delete unversioned items"

Problem

If I have a working copy of a Subversion repository, is there a way to delete all unversioned or ignored files in that working copy with a single command or tool? Essentially, I'm looking for the SVN analogue to `git clean`. Either a command line or GUI solution (for TortoiseSVN) would be acceptable.

Original source

Related problems