How to Recursively Find All Files in Directories/Subfolders by Wildcards


Go to OSX Daily to read How to Recursively Find All Files in Directories/Subfolders by Wildcards

Users may come across a situation where they would like to find all files in a directory, folder, or subfolder structure, that match a particular string but with variations to the file names, a situation perfect for finding files based on wildcard matches.

For example, maybe you’d like to locate all files on a file system containing the word “invoice” regardless of where in the filename the text of ‘invoice’ appears (eg, files named like the following; invoice1-2023.pdf, big-invoice-wow.pdf, yourfavoriteinvoice.pdf, invoice-2-22.pdf, etc).

This article…

Read more: How to Recursively Find All Files in Directories/Subfolders by Wildcards