Looking for a software that can find and remove based on parts of file names.
For example (file names):
"This is not, for this is right"
"This is not cause it is wrong"It would find these because they start with the same characters.
Then I want to remove all with wrong in them.
Is this possible?
55 Answers
Try this freeware - Everything: should do what you want and very quick and easy to use.
I assume that searching for "beginning of text*" without the quotes is not an option for you. I recommend a free tool to find similar file names.
This is a tool that has commercial version, but the options to find duplicate files and files with similar names are unrestricted. It can detect for example: My CV.doc, My new CV.doc, My Cv 2013.doc and so on. You can adjust the similarity percentage for the search.
Actually it can even select all the files that contain certain word for you like "Wrong" in the results in order to delete them automatically, but that is available in the paid version. See the quick-check preview here:
You can even specify multiple words or phrases to be matched.
I think it will do exactly what you need.
Another Freeware alternative is Anti-Twin (which I have nothing to do with other than using it from time to time for purposes similar to those of the OP)
It's not a very stable or fast or program but it does have the (afaik) unique feature of allowing you to compare and match files based on a user-set percentage of the filename(s).
It sounds like you just want to delete files that start with "This is not" and end with "wrong". If that is the case, you can use the following command line command:
DEL "This is not*wrong.*" 1 If I understand the question correctly, another option is to use a Unix solution.
Install Cygwin or some other Unix lookalike, and pipe a sorted (by name) file listing
into an awk script that compares consecutive lines.