I'm trying to find filenames ending with "_" .
I'm also trying to find filenames with "_" occurring anywhere BUT the end.
Using a pattern match (? *) works if that is the first char, but not if the last char.
E.g.,: searching for a* gets results but *a does not (even though there ARE filenames with /a/ occurring after the 1st char.
I'd prefer not to use RegExp (very rusty on that.)
How can I search for a filename ENDING with a certain char?
How can I search for a filename ENDING with a certain char?
Software company owner
Re: How can I search for a filename ENDING with a certain ch
*_.*I'm trying to find filenames ending with "_"
You have to include the pattern for the extension as well.
*_*.* & !*_.*I'm also trying to find filenames with "_" occurring anywhere BUT the end.
Boolean mode...
Ofc you run in trouble if your file names contain a dot^^
One of my scripts helped you out? Please donate via Paypal
Re: How can I search for a filename ENDING with a certain ch
Perfect. Thanks!
Software company owner
XYplorer Beta Club