Select files which end with certain characters

0

Is there any way to select files which end with certain characters in Windows? I have a folder which contains a large number of pictures which have been created but with a resized size, and I'd like to get rid of them.

An example would be: picture-150x150.jpg

el.severo

Posted 2013-11-06T03:04:09.770

Reputation: 135

Answers

3

Alternatively, you can use the command line to delete all files that end with a certain string.
del *150x150.jpg will delete any file that ends in 150x150.jpg

Lawrence

Posted 2013-11-06T03:04:09.770

Reputation: 3 807

1

You don't need any extra software for this.

  • Go to the desired folder.
  • To save time and effort, use the Search box.

    enter image description here

  • Type a word or part of a word into the Search box.

It will list all files with that part of name in the folder.

Ashildr

Posted 2013-11-06T03:04:09.770

Reputation: 2 574