Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Select (or move) all images that contain a (Photoshop)path

Explorer ,
Sep 19, 2017 Sep 19, 2017

Is it possible, in a folder with lets say 50 images or so, to easily select all images that contain a (Photoshop)Path (and move/copy them to an other folder) without having to open all images in Photoshop and check manually if it contains a path or not?

I really like to be able to see if a image contains a path without opening it in Photoshop.

It doesn't matter if it's a Work Path, Clipping Path or just a single dot of a path.

Is this possible in Bridge or in an other way (on Windows)?

1.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Sep 19, 2017 Sep 19, 2017

Here is an ExifTool conditional command that will look for a Work Path or a Saved Path/Clipping Path and add an Adobe Bridge label of “Review” to the files that have this path information. If you don’t wish to add a Bridge label, one could add a rating such as 5 Stars, or perhaps add other metadata such as a Keyword. It would also be possible to move the images to another directory instead of adding label/rating/keyword or other metadata. This command will overwrite original images and will proc

...
Translate
Community Expert ,
Sep 19, 2017 Sep 19, 2017
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 19, 2017 Sep 19, 2017

Here is an ExifTool conditional command that will look for a Work Path or a Saved Path/Clipping Path and add an Adobe Bridge label of “Review” to the files that have this path information. If you don’t wish to add a Bridge label, one could add a rating such as 5 Stars, or perhaps add other metadata such as a Keyword. It would also be possible to move the images to another directory instead of adding label/rating/keyword or other metadata. This command will overwrite original images and will process all valid files in all sub folders under the main top level folder path. Work on copied files until you are confident of the results.

exiftool -overwrite_original -if '$workingpath' -label='Review' -execute -overwrite_original -if '$originpathinfo' -label='Review' -common_args -u -r '/Mac OS/Path/to/Top level folder'

For Windows OS users, simply change the straight single quote marks to straight double quotes and change the folder path at the end to a valid system path.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Sep 20, 2017 Sep 20, 2017

Thank you for your effort!
I'll look in to it more closely today (hopefully) and come back to this.
This sounds really promising

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 20, 2017 Sep 20, 2017

The paths to collections scripts don’t seem to work, so I think that this script is probably the best bet:

Script to Sort Images with/without Clipping Paths?

However in my tests, it only worked correctly on PSD files for clipping paths or saved paths. It did not work for unsaved work paths or for non PSD files such as TIFF that contained any form of path.

The ExifTool command works correctly on all tested file types and path types and is a lot easier to change than scripting code!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 21, 2017 Sep 21, 2017
LATEST

The ExifTool Mac OS code to move the files containing paths to two new sub-folders (Photoshop Work Paths or Photoshop Saved Paths) is:

exiftool -if '$workingpath' -directory=%d'Photoshop Work Paths' -execute -if '$originpathinfo' -directory=%d'Photoshop Saved Paths' -common_args -u -r '/Mac OS/Path/to/Top level folder'

For Windows OS users, simply change the straight single quote marks to straight double quotes and change the folder path at the end to a valid system path.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines