This might be real simple.
I want to find all files that have a specific string to the left of the extension and not include the extension as part of the wildcard search.
For example:
For my *doc* search,
return:
doctor.doc
builddock.txt
docktime.doc
doc
but don't return:
badfile.doc
anyfile.doc
In other words, if *doc* is the extension don't show me the file unless *doc* is also part of the file name.
I want to find all files that have a specific string to the left of the extension and not include the extension as part of the wildcard search.
For example:
For my *doc* search,
return:
doctor.doc
builddock.txt
docktime.doc
doc
but don't return:
badfile.doc
anyfile.doc
In other words, if *doc* is the extension don't show me the file unless *doc* is also part of the file name.