Copy link to clipboard
Copied
Hi All
In a specific directory, I need to find all InDesign files linked to a specific, named file.
I'm using Advance Search>Criteria:All Metadata>contains>search string.
My problem is that "search string" only works for single words. I need to be able
to search for a multiple word strings such as "ordergrid tile_cct 27-40"
I've tried using mutlitple criteria lines but get sketchy results.
Any help would be greatly appreciated!!
Thanks
Copy link to clipboard
Copied
Hi Briant,
I think you might be pushing Bridge's search capabilities too far.
What is your OS, I may have a solution for you?
Copy link to clipboard
Copied
LOL. I agree- may be pushing too far.
I'm on Windows 10 pro at office and Mac big sur at home.
Thanks so much for any help you can offer. Hundreds of files-major work problem for me.
Copy link to clipboard
Copied
This may be possible with ExifTool, but I'd need to run a test...
Copy link to clipboard
Copied
Thanks. I found a great InDesign script that works perfectly for my purpose.
Copy link to clipboard
Copied
For the record, here is the ExifTool solution. In this example, looking for all InDesign files that contain a linked placed image called "find-me.psd", recursively scanning into all sub-folders under the top-level folder.
Mac OS:
exiftool -if '$XMP-xmpMM:IngredientsFilePath =~ /find-me.psd/' -ext .indd -XMP-xmpMM:IngredientsFilePath -r '/path to/top-level/directory'
Win OS:
exiftool -if "$XMP-xmpMM:IngredientsFilePath =~ /find-me.psd/" -ext .indd -XMP-xmpMM:IngredientsFilePath -r "\path to\top-level\directory"