[tw5] List all images and delete them

Hi @all,

Is there a possibility to list all images that I uploaded to my wiki?
I want to remove some of them because I don´t need them anymore but don´t know how I can see all uploaded images.
Maybe there is some kind of code that I can put in a tiddler that will show all images? Or another possibility?

Best regards
heusmich

Be sure to make a backup! This can delete things! Also, if any of your images are external images, it can not delete the images on your hard drive.

Paste this into a tiddler and save. Delete the images you don’t want.

<table>
<$list filter="[all[tiddlers]]:filter[get[type]prefix[image]]">
<tr><td><$transclude mode=inline/></td></tr>
<tr><td vertical-align="middle" height="40px"><$button>Delete the image <<currentTiddler>> ?
<$action-deletetiddler $tiddler=<<currentTiddler>> />
</$button>
</td></tr>
</$list>
</table>

This works great, thanks for the help.