Finder and EXIF - creation date

The 'date of creation'  of pictures, normally stated in the exif-file of the picture, will be used to sort the pictures after the date of creation, as in iPhoto and any other photo program. In the finder, however, another 'date of creation' is used.
Is it not possible to force the finder tot use the exif data? What data is the finder now using?
Regards,
Goos.

In the finder you can show and sort on EITHER the modification date or the creation date of a file. I believe by default the finder view only shows the Mod date and not the creation date. So if you go into view options and then turn ON showing the creation date column (you can also turn off the mod date column if you like) give you the correct date and time or did iPhoto mess those up as well? If they are there, then now all you have to do is resort by that new column in the finder.
Otherwise, you will have to use a third party application to batch modify the date and time of the files to match those contained in the EXIF metadata. There are a large number of programs that will do that including Graphics Converter.
Patrick

Similar Messages

  • 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.

  • PSE 8 editor changing exif creation date

    When I bought a new Dell duo-core computer with Windows 7 I upgraded from PSE 6 to 8.  Since then, the editor in 8 sometimes replaces the exif creation date with the date and time it was modified.  It isn't keeping the first and adding the second as date modified, just replacing it when I save a photo from the editor.  It isn't doing that every time, so I can't figure out what would cause this.  In two days in March, my exif creation date in 500-600 photos, many of which I didn't edit at all, were changed to either March 20 or March 21, 2010.  Any idea how I can prevent this from happening?  Hint:  it appears as though all the photos affected were taken with an Olympus point and shoot or were scanned to PSE 6's Organizer.  I can't find any photos from my DSLR that have been affected.

    I hate to be the bearer of bad news, but it didn't help.  I lost another photo today and had to retrieve it
    for the Organizer from my Windows files.  Instead of placing it next to the original photo (or in the same area), it placed it in a file called Adobe/Photoshop.com.  I made sure again that the line you referred to isn't checked.  In addition, when the photo doesn't get lost, the Exif date for the photo does get lost and the photo is dated today.  These two problems seem to be connected, although I can never predict which one will occur.  Anybody have more ideas?  Could it be a Windows 7 issue rather than a Photoshop issue?

  • Batch convert and preserve creation dates

    Hello,
    How can I batch convert videos and preserve creation dates.
    I have a big collection of family video that I want to convert, but preserving the dates is crucial for sorting by date after.
    Any ideas if the creation date can be transfered to the video EXIF of similar ?
    Simcerely
    Dan

    There are a few things you can do in Compressors...
    You can add Annotations to the video. Click on the video in the video well, Inspector window, Additional Information tab:
    and/or you can add a small text overlay to the bottom right of the video; Inspector window, Filter tab, Text Overlay:

  • PO creation Date and Invoice creation Date

    Hi,
    Can any one help me regarding which table I can look for PO creation date and Invoice creation date. I require these fields for my reporting requirement.
    Thanks in advance,
    Arvind.

    Thanks for your response Bala.
    I got the Table which I require. I have one more question on this.
    Can you tell me Invoice Creation Date is RBKP-BLDAT(Document Date in Document) or RBKP-BUDAT(Posting Date in the Document) and PO creation Date is EKKO-AEDAT(Date on which the record was created) or EKKO-BEDAT(Document Date in Document).
    Points already rewarded.

  • Very urgent : shipping point and delivery creation date

    Hi :
    I have a custom table with fields :
    belnr, posnr, btyp, aufnr, ebeln, ebelp, livbeln, liposnr,matnr,wadat,kunnr,werks,bmeinh,getri,inaktiv,wabukz,erdat,aedat,loekz.
    Custom Transaction with fields :
    vbeln (field name belnr) , aufnr, delivery vbeln ( field name livbeln ),werks, mat .avail.dat ( mbdat ), transport.plan date(tddat),
    matnr, and sales order item (posnr).
    I have to select sales order , item from custom table based on plant (werks) shipping point , and delivery creation date.
    how can i relate shipping point and delivery creation date to my query.
    For delivery creation date, it should be selected based on current date+-2 and should choose MBDAT OR TDDAT which ever is earlier based on current date.
    I would appreciate if anyone can give me som idea and full points r rewarded.
    Thx.
    Rag

    Hi,
    Try this:
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep
    <b>on vbapvbeln = vbepvbeln and vbapposnr = vbepposnr</b>
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    regards,
    Anji

  • Shipping point and delivery creation date

    Hi :
    im selecting sales orders , items and schedule line
    from a custom table based on plant, shipping point and delivery creation date. 
    Is there any relation between Schedule lines and delivery creation date.
    For delivery creation date d_date = SY-DATUM,  and should select Mat Avail dt MBDAT or Trans. planning dt TDDAT which ever comes earlier.
    vbep-edatu = itab-d_date.
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep on a1posnr = vbepposnr
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    can anyone help me with this select statement.
    Thanks.
    Raghu

    Hi,
    Try this:
    select a1belnr a1posnr vbep~etenr into corresponding fields of table itab from a1 inner join vbap
    on a1belnr = vbapvbeln
    inner join vbep
    <b>on vbapvbeln = vbepvbeln and vbapposnr = vbepposnr</b>
    where a1~werks = p_werks
    AND vbap~vstel = p_vstel
    AND vbep~edatu = p_edatu
    AND (vbep~mbdat <= p_edatu OR
    vbep~tddat <= p_edatu ).
    regards,
    Anji

  • Find photos by Creation Date?

    Is it possible to Find (and then, Delete) all photos in the iPhoto 5 Library which were taken ON or BEFORE a certain date?
    Many thanks.

    John:
    You can create a smart album with the criteria: Date is before DD/MM/YYYY. That will find all of the photos before that date.
    Just to be on the safe side I would check some to make sure iPhoto is using the date you want, capture vs modified, as it uses the modified date in assigning roll dates when importing files from a folder on the HD. But you should be OK. Any file that has been scanned or copied from another source won't or may not have a captured date but just a created and modified date. Just double check before deleting.

  • Finding and showing file date/time i'm referencing on

    How can I find and show on page the date and time parameters of file on which i'm referencing with using an JSP? I tried it with java.io.*,
    <%@ page import="java.io.*"%>
    <%@ page import="java.awt.*,javax.swing.text.*"%>
    <%@ page contentType="text/html; charset=windows-1250"%>
    <%
    File u_file=new File("http://oracle1/pn/index.html");
    long dat=u_file.lastModified();
    Date u_date=new Date(dat);
    %>
    <%=u_file.getPath()%>
    <%=u_file.getName()%>
    <%=u_file.isFile()%>
    <%=u_date%>
    but the date was always 0(1.1.1970) ,result of isFile was null, but result of Pathname and Name was correct.
    What is wrong?

    From the JSP, if you say, File file = new File(path);
    It will try to search for the file starting from the bin directory (I am using tomcat). So, you need to give the full path to the file from there.
    For example, if your file is in, webapps/examples/html/ directory, you need to use something like this,
    File file = new File("../webapps/examples/html/index.html");
    You can't give URL as the file name/path. You can't access Oracle's file system!!!
    Hope this helps.
    Sudha

  • Logic for finding transfer order creation date for a given delivery??

    Hi,
    I am trying to find a logic for connecting the table LTAK which has ERDAT as the T.O. creation date with LIKP/ LIPS table.
    Can you please help me with this information. 
    Regards,
    Peeyoosh.

    Hi,
      Go to LTAP to get the transfer order number based on delivery ltap-vbeln. Then got to ltak to get the Creation date.
    Hope it helps
    Vinod.

  • How to import Filenames and File creation Date into Table..

    Hi Folks,
    I am importing Differennt Excels Files into table. my require ment is after importing completed I need to insert all these Filenames ,File creation date into table. (for Auditing).
    Can you please give me any ideas or reference link.  Thanks In Advance.

    Hi Folks,
    I am importing Differennt Excels Files into table. my require ment is after importing completed I need to insert all these Filenames ,File creation date into table. (for Auditing).
    Can you please give me any ideas or reference link.  Thanks In Advance.
    You can also prepare dir command and then exeucte it by using XP_CMDSHELL. This gives you file name, modified date, creation date information.
    Please refer:
    https://sqljourney.wordpress.com/2010/06/08/get-list-of-files-from-a-windows-directory-to-sql-server/
    https://hernandezpaul.wordpress.com/2013/02/15/store-file-names-and-modified-dates-in-a-table-without-a-foreach-loop-task-sql-server-ssis/
    Cheers,
    Vaibhav Chaudhari
    [MCP],
    [MCTS], [MCSA-SQL2012]

  • Media manager and EXIF rotation data

    My parents have FiOS and I recently helped them setup the Media Manager software so that they can view their pictures on the TV.  It works great, except for images that have been taken with the camera rotated.  Most other applications (Picasa, Canon ZoomBrowser, etc) are able to read the EXIF and rotate the image accordingly.  What is Verizon's timeframe for implementing this fairly basic feature into Media Manager?  If it is there, I apologize, and please let me know where it is - I was unable to find it.

    When you say rotate the photos using media manager, I assume you mean the PC component?  I suppose I could do that,  but that's really annoying (like you said).  Also, the problem is that then I believe that wouldn't they show up rotated wrongly in all of the other software (zoombrowser, picasa, etc) that does support the exif data for 'this side up' ?
    When you say you don't use it anymore, have you found another solution that can export photos to the Home Media DVR?  That's what my parents really want - the actual PC software, they'd prefer to use Picasa etc as that's what they're already used to. 

  • Printing Problems with Elements 8.0 and EXIF time data

    I've been using Premiere Elements 8.0 in Windows XP Professional for a couple of years with no problems. I shoot mostly in JPEG. I've always imported my images using a card reader (the same one). About a year ago suddenly I ran into printing issues. When I imported my images and tried to print them Elements crashed just at the point where it should begin the actual printing.  By chance I discovered that if I adjusted the time EXIF on the images in Elements by either hours or days, back or forward and adjusted them back to the original time/date the problem disappeared. If I had shot in RAW and edited these images there were no problems with the resultant JPEG.
    I noted the discussions about Elements changing the time in the EXIF and checked for this but this hadn't happened. The EXIF in camera and in Elements were the same. I also checked this against the time settigs of the camera and they were the same. I shoot with a Nikon D300.
    I backed up my images and did a complete re-format of my computer so that it was back to its ex-factory settings, re-installed Elements, restored my catalog from the backup and the problem still arose. I'm reluctant to upgrade to Elements 10 until I (hopefully) I find out  if (a) anyone else has the same problem; and (b) if anyone who had it has fixed it.
    Any ideas would be very welcome.

    Miceal,
    I am confused. Do you mean Photoshop Elements? Premiere Elements does not have a Print function. On can Export/Share, but not Print. For Photoshop Elements, you will want the PSE Forum.
    Good luck,
    Hunt

  • Finder and wrong Created dates/times

    I've noticed this glitch in Tiger and Snow Leopard, and it has remained in Lion.  When I have a Finder window open (whether in List or Column view), I notice that a number of files show the Created date and time as 12-31-69 5:00 PM.  Even if I check the file info (Command-I), I get the same results.  Yet when I import a photo file with such a date/time into say Aperture or Lightroom, for example, the original created date is proper, which tells me that my Mac isn't corrupting this information, it's just not rendering it properly in Finder.
    Anyone else having this problem with Finder?  More importantly, does anybody know if there is a fix for this?

    Copying files from a backup should not alter the created/modified dates, I just tested that.
    Why don't you try a TM restore on one of the files and see if it works.

  • IPTC and EXIF image data

    hi,
    anyone found a way to read/write exif or iptc image data?
    thanks,
    steffen

    There are a few projects I've seen that are working on EXIF
    libraries. A quick Google search turned up this library that might
    be worth looking into.
    http://code.shichiseki.jp/as3/ExifInfo/
    Fair warning, I haven't tried it, but it's worth looking
    into. It even appears to be well documented:
    http://code.shichiseki.jp/as3/ExifInfo/asdoc/
    -Rob

Maybe you are looking for

  • External hard disk for Time Machine

    I'm considering baking up my iMac. I have a Lacie external hard disk with a Master Boot Record partition type. On it, there are already some data files from both Windows and Mac machines. I understand that, for Time Machine to work, the partition typ

  • Lightbox Gallery not working properly

    I put a lightbox gallery on my site for pictures and everything I'm getting on my test site is blank boxes with a red "x". One of the pictures showed up for some reason, but I didn't get the background color #1a2158 in the gallery background like I s

  • Best practice enquiry

    I'm a hobby user with intermediate experience and interested in the best way to manage projects. If I make a number of movies, is it better to keep all the projects in a folder for each, including all the resources, or is it better to have one folder

  • How to add a SS instead of a chart?

    Coming from Appleworks where you could create a SS with a few clicks of mouse, how do you add a SS into pages and not just a chart? Regards Alfonso

  • N97 photo viewer

    After a reset I now can't see the phots I had taken previously with the 'phone. I know they are there on the mass memory, but the photo viewer says they aren't there. Anyone got any idea how to make them viewable again?