Can Bridge sort my images into folders based on an Exif date?

All my Adobe products are pre-CS/CS2 and I don't yet have access to Adobe Bridge. My trial copy has also timed out. However, I would like to know if Bridge has the capability to take a folder of images (Canon Raw) and move them to new folders based on the original exposure date as stored in the Exif metadata (ideally creating the required target folders automatically). I'm thinking in terms of one folder per year, probably with subfolders for each month.
I'm simply trying to avoid having all my images in a single humongous folder with Bridge re-creating (or at least re-displaying) thousands of thumbnails every time I just want to look at a few images. Sorting them into folders by date just seems a simple solution to that problem. However, I'd be very happy to hear about alternative image filing ideas.
Once I have used Bridge to create extended metadata for image categories, etc, I'm also assuming that Bridge will let me search for images that match defined criteria no matter how many folders those images are stored in.

I don't know of any functionality to do that in Bridge now; however, it certainly can be done via scripting.
Perhaps one of our forum contributors might want to take on a "picture sorter" script...
Bob
Adobe Workflow Scripting

Similar Messages

  • HT3529 How can I sort my iMessages into folders?

    How can I sort my iMessages into folders?
    I have always been able to sort my text messages in this way on other phones but cannot see any way of doing it on my iPhone. 
    I really need this facility as I use my phone for a number of different projects and need to be able to keep project message streams together in one place.
    Thanks

    C4U wrote:
    How can I sort my iMessages into folders?
    You don't, as this is not a feature of the iPhone messages app.

  • How can i move several emails into folders in ipad?

    How can i move several emails into folders in ipad?

    You can sort by using the search feature. When you are in your mail account you use the search bar at the top to find emails from a particular sender (there are Other options as well in search). Type in that sender's address. When the emails show up in the window on the left side, select all of the emails that you want to move. Tap Edit at the bottom and the Move Folder icon will appear. Tap that icon and select the folder that you want to move the emails into.
    To move multiple emails without using the search to sort, go to your inbox and tap Edit. Then select all of the emails that you want to move. After you are done selecting them, tap the Move icon at the bottom on the left side of the account window. When you tap move, you get a choice of folder into which you can place the selected emails.

  • Would it be fair to expect that importing images would also create folders based on the international date std???

    I am very fond of the light and easy to use PhotoShop Elements.
    I am situated in Denmark and would expect an image import to allow the creation of folders based on the international date standard (yyyy mm  dd).
    This "feature" would allow image folders to be created as follows:
    2014 05 06 (6. May 2014)
    2014 05 07 (7. May 2014) and so forth
    When using the US date format folders are created 2014 06 05 and 2014 07 05 which doesn't make sense if folders should be viewed in a logical order.
    It seems that the international date standard has been removed from PhotoShop Elements some where arround version 9-10 and it does create some rather annoying problems for me.
    Am I really the the only one to experience this problem?
    Since I cant figure out how to setup the organizer by using preferences, then how can I have the folders created automatically in the "normal" numeric/date order ?
    Sincerely
    Henrik

    Thx for the prompt repåly.
    Yes, you are quite right. PSE 12 is the thing.
    I checked the import settings under preferences, but still the same problem with the date format.
    But I did find though, that  the APD Dialog Advanced allows me to actually automatically create the folders as wanted.
    So for now it seems to be solved, only not through PSE Preferences, but via the APD Dialog.
    Cheers,
    Henrik

  • Can I enter an image into a form on Adobe Forms Central?

    Can I enter an image into a form on Adobe Forms Central?

    Yes, you can add an image to a form design using the toolbar button highlighted below:

  • Can I sort the images used in a book's browser by the # of times used?

    I'm also producing a DVDSP slideshow of the event's (selected) photos not included in the book.
    Q2: Can I sort the images used in a book's browser by the # of times used?
    That way I don't have to search thru hundreds of photos. When used in a book, each photo gets a badge showing the # of times used. Can this badge be used in a sort?
    Or must I apply a keyword to the used (or unused) photos?
    Thanks.

    But if the file has been embedded, the file name is lost.

  • Can't import any images into lightroom 5

    Working away in my studio and suddenly I can't import any images into lightroom 5 (version5.5) for macbook pro os x 10.9.5

    Thank you for your response,
    ...my complete goofiness.
    I somehow managed to change my destination folder in Lightroom when importing images and could not copy to the "location" (or as the right panel indicates, the "destination").
    So adjusted my destination folder and am back to importing as usual.
    _Cindy

  • I can not move my files into folders or trash

    I can not move my files into folders or trash,I continually have a message that says "working " on moving to a folder or trash,but it never gets done.
    I used to be able to drop and drag any files into any folders or into the trash.Please help.
    Thanks,
    iskaroll

    Please carefully read and use this article to help troubleshoot your Trash problem:
    http://www.thexlab.com/faqs/trash.html

  • Move files into folders based on EXIF Creation Date

    Hi all,
    Being a novice with Applescript I have read what I can find on this forum, but are not able to find exactly what I'm looking for. I think that the posting "Using AppleScript to create folders and place files in them" is the closest I get to what I want but I want to create the folders based on EXIF creation date.
    Let me explain.
    I have a folder that contains thousands of jpg, mp4, mov and avi files; all created by different cameras. I want to bring some order to this and place files in folders based on year, month and date that the file was created (the photo taken or the video captured). This date is stored in the EXIF creation date.
         Take all files in folder A
          foreach file find the EXIF creation date
          move each file into directory tree (at same location is ok) where toplevel is YEAR, next directory level is named accoring to EXIF creation date as MMDDYY
          if no EXIF creation date can be found, fallback to creation date (file property?)
          if no good date is found, leave file alone in folder A for manual sorting; do not use modification date as this may have been altered
         this would create a structure as
         2002
                011602
                        File 1 taken Jan 16 2002
                        File 2 taken Jan 16 2002
                082002
                        File 1 taken Aug 20 2002
                        File 2 taken Aug 20 2002
          2003
                 etc 
         2004
             |   etc
         2014
                 010114
                        File 1 taken Jan 1 2014
    etc etc

    Well, technically that's correct, Frank, but the same could be said of much of AppleScript - the core functionality is limited, but there's a lot you can do.
    For example, it's actually trivial to use Image Events get any given EXIF tag of an image:
    set theFile to (choose file)
    tell application "Image Events"
              set f to open theFile
              set cD to value of metadata tag "CreationDate" of f
      close f
    end tell
    Now, cD will have the value of the CreationDate tag (assuming it exists, of course - you'll need to wrap this in a try/end try statement). Once you have that it shouldn't be too hard to extract the date components, work out the target directory name and move the file.

  • How can I transform an image into a different design?

    I've used the Distort effects in AE to modify the following video:
    Into this:
    I'm a pretty pleased with the results.  I simply used the Transform and Mirror effects.
    However, I have a bunch of other designs which I can't distort into a good alternative design by using the same method.  Here is an example:
    I am hoping some of you very clever people can come up with a method I can use for transforming this sort of design into something decent!
    Thanks!

    Thanks for the replies!
    I realise this is a broad question.  I will elaborate on the images from my first post in order to provide more details:
    1)  I have generated a number of animated designs, the blue image when animated looks like moving electricity.  All of the designs are geometric patterns of one form or another.  I have around 50 of these designs.
    2)  I want to create variations on these geometric animations. Rather than start from scratch and create a brand new design (which is a lengthy process), I want to use the effects in After Effects to create variations.  In the example I provided, I took the blue design and used a number of effects to create the green design.
    3)  Essentially, I now have two different animations.  The blue original, and the green variation.
    4)  Here is my question.  Are there any specific effects within After Effects, that allow me to distort an image/animation to such a degree that it essentially looks like a different image/animation?  So far, I have used Transform and Mirror.
    I gave Kaleidoscope a try, and that gave some good results, so thanks for that suggestion.
    5)  The problem I am having is that some of my other designs are more or less 'symmetrical' in appearance - like the yellow image from my first post.  The Transform, Mirror and Kaleidoscope effects do not really distort the symmetrical animations enough.  This is because they simply tend to either rotate the image (which is a circle, so rotating it does little), or they mirror the design (which again does little as the image is a circle).  So, are there any other effects I can choose which will distort a symmetrical geometrical design, whilst still retaining a degree of geometric appearance?
    I thank you again for your time, it really is appreciated!
    EDIT:  As Todd Kopriva suggested, here is the link to the other forum post:  http://forums.creativecow.net/readpost/2/1008997  - I forgot to link back to this forum from there.  I will add that shortly.

  • HT1535 Once I have songs in mt ipod, How can I separate the songs into folders?

    Once I have songs in my IPod, how can I separate them into folders such as favorites, etc.?

    That sort of thing is best done in iTunes. And by "folders", I assume you mean Playlists.
    In iTunes, you can create Playlists and then sync those to your iPod. The music will still be listed by artist, album etc,. but if you go into the Playlists menu, you will see the songs grouped by Playlists, according to your choices.
    As you mentioned favourites; on your iPod you can give a song a star rating, from one to five stars. It's possible to create a Smart Playlist in iTunes which will automatically add (for example) three, four and five star rated songs to a Playlist, but not the songs with no rating or just one or two stars.
    So if you were listening to a song and decided there and then to give it a four-star rating, then at the next Sync with your iTunes Library, that song would be added to your Smart Playlist which is then also included on the iPod. (In theory, it should go into that Playlist on your iPod without connecting to your iTunes Library, but that doesn't always work.)

  • How can I insert a image into a BLOB column in a table?

    I am using forms6i against a 10gR2 database and I have one table with a BLOB column and I try to insert a image into this column. I get ORA-01461 error.
    The curious case is that in another table with a BLOB column it works very fine.
    What happens with the first table? How can I avoid the error?
    Thanks in advance.

    Hi hyue,
    Thanks for visiting Apple Support Communities.
    If you would like to add an image to a project in iMovie for iOS, see this article for helpful steps:
    iMovie for iOS (iPad): Add photos to a project
    http://support.apple.com/kb/PH3171
    All the best,
    Jeremy

  • Can't import still images into a project or create a podcast track

    I'd be grateful if anyone can explain why I can't import still images onto a track like you can easily do in garage band - in garage band you simply create a podcast track, then drag your photos onto it. However in logic, when I open the media browser i can get a photo folder up but it will not allow me to even look at the contents.
    Also, why is it that the manual for logic express has nothing about how to import a movie to produce a movie score - and yet garage band can even do this.
    Thanks for any advice.

    Have you tried "Working with Video" section of the manual? It's somewhere close to the end...
    Logic works with audio, not images. That's why you can't import a photo, because media browser is used to locate audio files, mostly. And sometimes video.
    I guess it works this way, you create a podcast with Logic, bounce it to mp3 or another compressed format. Then import it into GB and insert a photo.

  • Can't import any images into iPhoto

    Hello,
    I am on my honeymoon and trying to offload pictures from my camera but have found that I can not import any pictures into iPhoto. I am unable to import any file, not just the ones on my camera. I have tried jpgs, gifs, and pngs from various sources and none of them import.
    So far I have tried holding down option and creating a new library, deleting the plists, rebooting, and reapplying the latest iPhoto update. Does anyone else have suggestions for me to try?

    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  

  • Downloaded jpg pictures - can't paste cut images into jpg's

    I've downloaded some low resolution jpg's from the Web and intended to do some image cuts from photos I took - and to paste those cut images into the low res downloaded pictures.  Using Elements 9, I can cut and paste from photo to photo if they are pcitures I took on my camera just find - just can't seem to cut and paste into the downloaded low res images.  Cutting from a self took photo and pasting into the low res jpg does create a layer, but it shows up blank.  I even took one the jpg's I downlaoded from the Web and scanned it so it might take off any protection that may be comng down with the downloaded jpg.  Nothing seems to work.  Thoughts?

    Try opening a blank canvas in Editor
    File à New à Blank File
    Set your dimensions and background e.g. white or back
    Set resolution for print or web.
    Drag your images up from the project bin on to the canvas.

Maybe you are looking for

  • Questions on N8 maps & apps (vs. those in N900)

    Hi all, I’m helping my wife figure some basics out on her new N8, and I have some questions. . . . As you’ll also see from some of my questions, the N900 is my main/only point of orientation. --Maps: this looks to work differently than the very prelo

  • Facing problem while implementing JMS in Weblogic 8.1

    Hi all, I am very new to JMS. I am trying to implement JMS in Weblogic. I have cofigured the server properly but while i am executing my receiver class i am getting the following error: javax.naming.NameNotFoundException: Unable to resolve 'MyJMSQueu

  • HP Laserjet Pro 100 Color MFP M175nw

    I am not able to get it started with e print or scanning... any suggestions?

  • Unknown error 1603 when trying to restore my iphone 3g in itunes - help!!!

    hello everyone - any help on the following issue would be greatly appreciated! just updated to latest version of i tunes on my PC, synced all my new music etc, then phone just got stuck on the black screen with the small apple logo in the middle. pho

  • Please HELP! mousewheel issue!

    Hi, I have a VBOX that contains a repeater that is creating a bunch of TextArea's within it that have htmltext values and they are selectable. The VBOX has "verticalScrollPolicy=true". When the vbox 1st renders the mouse wheel works and the scroll ba