Changed Creation Date

The creation date on all my photos in 6 catalogs has changed to 01-05-11. This includes photos that were taken in the past few months. I don't know when the change happened. Any clues as to what is going on?

Beat,
When I posted the question I thought it was only the dates in the metadata - all of them. I just discoverd that all the file creation dates on my "Photography" hard drive now show as 01-05-11. This drive holds 8 LR catalogs and a wide assortment of other files related to my photo work. It is starting to look like a non-LR issue. I'm checking now to see if the change occured near the time I did a recent LR update.
Thanks for looking. I'll post more info after I have done some more digging.
Ed

Similar Messages

  • Changing creation date on adobe acrobat 9

    I've got a folder full of old PDF files at work. They are all labeled DD-MM-YY to signify the date they were made but the pdf's were originally in Word format and when they were all converted to PDF's, they all took that day as their created date. I'm looking for a way to change the created date on these hundreds of PDF's to match the date in the file name. Is there an easy way to do this?  I have to print the documents and organize them chronologically by date.  However, I need to also have corresponding creation dates with the documents.  I'm not good with scripting or programming however I am great at following step by step directions.  I would greatly appreciate help on this since this is a semi time sensitive project.
    Thank you.

    Acrobat does not offer any way to change creation date. It is correct: by definition, it is the day when the PDF was made, it is not supposed to be set to a different date that might be more convenient.

  • Batch change creation date meta data in Bridge?

    In Lightroom i can change the meta data on multiple files to be increased by say 2 minutes and all the creation times are adjusted.  Can this be done in CS4 bridge???

    In Bridge you can not change the date created.  That is time stamped by camera when you take the picture.

  • Change creation date of jpeg's to shooting date?

    Does anyone know of a utility that will change the creation date of a jpeg to the shooting date stored in the exif data?
    Phil

    You might try this one, Phil.
    http://www.macupdate.com/info.php/id/11143/a-better-finder-attributes
    Haven't used it or heard any reports one way or another.
    -mj

  • How do I change creation dates of scanned photographs?

    I have just scanned thousands of old photos into my computer, and would now like to change their creation dates to reflect when the photos were actually taken (some as far back as the early '70s) -- that way I can organize them chronologically in iPhoto.  Is there any way to do this?
    Thanks!

    Select a [photo (or photos) and use the Batch Change time and date command to set the date or a scanned photo
    LN

  • Change creation date with Applescript?  Any one?

    Is any one good with writing AppleScript?  I've looked in the Help menu and I don't understand it.
    I have a folder of over 1,000 pictures that has the incorrect "Date Created."   The correct date is actually in the "Date Modified" info for each picture.  I have no idea how this came to be.
    Given that there are so many files in the folder, using the "Touch -t" command in Terminal for each one individually is.. well.. daunting. 
    If any one knows how to write a quick Script to copy the "Date Modified" to the "Date Created" information going through each file in a folder (automated), karma would look good on you. 
    I've been going through page after page of web-search results of "change date created mac app" with no such luck.
    (OS 10.8.2)
    Thanks to any one that can help in any way. 

    Hi,
    touch -t can change the creation date, but it can only set backward, not forward.
    Here is a AppleScript that uses the class NSFileManager from the Foundation framework to change the file's creation date.
    -- this script set the creation date of each file to the file's modification date
    -- When the dialog will appear, just select the files whose creation date is incorrect.
    set pathErr to getFiles()
    if pathErr is not "" then -- if error on some file
      activate
              display dialog "Done, but the creation date of some files have not been changed"
              tell application "TextEdit"
      activate
                        make new document at end of documents with properties {text:("  The creation date of these files have not been changed :" & pathErr)}
      end tell
    else
              display dialog "The creation date of all the files have been changed."
    end if
    on getFiles()
      script o
                        property tFiles : {}
      end script
      set o's tFiles to choose file with multiple selections allowed without invisibles
              set t to ""
              set tError to ""
      set tc to count o's tFiles
      repeat with i from 1 to tc
                        set t to t & " " & quoted form of POSIX path of (item i of o's tFiles)
      if (i mod 250) = 0 or i = tc then -- 250 files sent to the shell to not exceed the limit of characters.
      set r to my setCreationDateToModDate(t)
                                  if r is not "" then set tError to tError & return & r
                                  set t to ""
      end if
      end repeat
      return tError
    end getFiles
    on setCreationDateToModDate(theseFiles)
              do shell script "/usr/bin/env python -c 'import os, sys
    from Foundation import NSFileManager
    df = NSFileManager.defaultManager()
    nbr=len(sys.argv)
    for i in range( 1, nbr ):
       f = sys.argv[i]
       my_dict, error = df.attributesOfItemAtPath_error_(f, None)
       if error is None:
          mDate = my_dict.fileModificationDate()
          cDateDict = {\"NSFileCreationDate\":mDate}
          b, error = df.setAttributes_ofItemAtPath_error_(cDateDict , f, None)
          if not b: print f' " & theseFiles
    end setCreationDateToModDate
    Works on OS X 10.5.x or newer.

  • Applescript to batch change creation dates (different dates each file)

    I was pointed to an older thread that almost gets me what I need, but I'm not great with applescript, so I'm lost. Basically, I have a bunch of files. The name of the files are in a yyyymmddhhmmss.extension format (such as 20040710141231.mp4). I want to set the creation date of each file to the date by which they are all named. I found the older thread with a similar script and modified it, but I know it's not all there. I can post the whole script, but I'm pretty sure my main issue is with this part:)
                        tell originalFileCreationDate
                                  set myY to year
                                  set myM to text -2 through end of ("0" & (its month as integer))
                                  set myD to text -2 through end of ("0" & day)
                                  set myHr to text -2 through end of ("0" & (its time) div 3600)
                                  set myMin to text -2 through end of ("0" & (its time) mod 3600 div 60)
                                  set mySec to text -2 through end of ("0" & (its time) mod 60 as text)
                        end tell
    I'm not sure how to write that to set the date based on the file name. Can someone point me in the right direction?
    Thanks.

    Try this instead.
    This will change the access and modification times of the file:
    set theDir to choose folder
    do shell script "
    for f in " & POSIX path of theDir & "*
    do
              n=${f##*/}
              if [[ $n =~ ^[0-9]{14} ]]; then
                       touch -t ${n:0:12}.${n:12:2} \"$f\"
              fi
    done

  • Finder changed creation date on my picture files after upgrading to 10.5

    maybe somebody on that forum can help me. I installed Leopard on my Macbook pro. it works ok a bit sluggish not as smooth as the old tiger. But my biggest problem all my pictures (wedding photos of clients) the creation date in finder has changed to Dec31 1903 9am or 8am. Anybody has a clue how i can reset that or are all creation dates are lost

    Welcome to the forums... unfortunately SMB issues are not fully mainstream.
    Anyhow, I have scanned the change log of files touched by the update (searching for SMB - original list courtesy of Rixstep). This yielded:
    /Library/Preferences/SystemConfiguration/com.apple.smb.server.plist
    /private/etc/smb.conf
    /System/Library/CoreServices/SmbFileServer.bundle/Versions/A/Resources/DesktopDe faults.plist
    /System/Library/LaunchDaemons/com.apple.smb.server.preferences.plist
    /System/Library/LaunchDaemons/com.apple.smbfsloadkext.plist
    /System/Library/LaunchDaemons/smbd.plist
    /private/etc/smb.conf.template
    /System/Library/Extensions/smbfs.kext
    /System/Library/Extensions/smbfs.kext/Contents/CodeDirectory
    /System/Library/Extensions/smbfs.kext/Contents/CodeRequirements
    /System/Library/Extensions/smbfs.kext/Contents/CodeResources
    /System/Library/Extensions/smbfs.kext/Contents/CodeSignature
    /System/Library/Extensions/smbfs.kext/Contents/Info.plist
    /System/Library/Extensions/smbfs.kext/Contents/MacOS/smbfs
    /System/Library/Extensions/smbfs.kext/Contents/Resources/load_smbfs
    /System/Library/Extensions/smbfs.kext/Contents/version.plist
    /System/Library/Filesystems/smbfs.fs
    /System/Library/Filesystems/smbfs.fs/Contents
    /System/Library/Filesystems/smbfs.fs/Contents/Info.plist
    /System/Library/Filesystems/smbfs.fs/Contents/Resources
    /System/Library/Filesystems/smbfs.fs/Contents/Resources/English.lproj
    /System/Library/Filesystems/smbfs.fs/Contents/Resources/English.lproj/InfoPlist. strings
    /usr/lib/sasl2/smb_lm.so
    /usr/lib/sasl2/smb_nt.so
    /usr/lib/sasl2/smb_ntlmv2.so
    /private/var/db/smb.conf
    Items highlighted in bold could be relevant.
    Have you checked that your entry in nsmb.conf is intact? If it is, could it be overridden by a change to one of the other conf files (or a plist)?

  • File info templates change creation date

    I created a couple of file info templates a number of years ago to apply to my pictures.
    However, whenever I apply these templates in PS (CS2, CS3 & CS4) the creation date of the photograph automatically changes to the creation date of the template!
    Is there a way of preventing this irritating problem?
    THANKS

    I created a couple of file info templates a number of years ago to apply to my pictures.
    However, whenever I apply these templates in PS (CS2, CS3 & CS4) the creation date of the photograph automatically changes to the creation date of the template!
    Is there a way of preventing this irritating problem?
    THANKS

  • Change creation date in a jpeg with exif

    Hi
    how can I set the creation date to t he date the picture was taken according to the exif information?
    Thanks
    Idefix

    try this app: http://publicspace.net/ABetterFinderAttributes/
    Beavis2084

  • How do I use AppleScript to Change the Creation Date to the Current Date?

    I sorted my downloads folder by creation date and found that the items were sorted seemingly randomly. On closer inspection, I saw that the creation dates were not the same as the dates that I downloaded the items, so I figures that Snow Leopard was using the date given to it by the server.
    In order to get the items sorted by download date, I figured I'd use Hazel, but it doesn't have a “change creation date” item. It does, however, have an “run AppleScript” item.
    So my question is this: how do I use AppleScript to change the creation date of an item to the current date?

    TC (Techno Cat) wrote:
    Okay, I tried changing the creation date with SetFile, but it kept giving me an error:
    What am I doing wrong?
    Looks like the date and time was not quoted
    Try this Applescript. It will change the creation date of every file in the Downloads folder to the current date and time:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #E6E6EE;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    set current_date_and_time to do shell script "date \"+%m/%d/%Y %H:%M\""
    tell application "Finder"
    set filelist to every file of the alias (the path to downloads folder as text)
    repeat with currentFile in filelist
    do shell script "/usr/bin/SetFile -d " & quoted form of current_date_and_time & space & quoted form of POSIX path of (currentFile as string)
    end repeat
    end tell</pre>

  • Change/creation of vendor

    Hi,
    Can you let me know which Tcode I should run, to get the vendor change/creation data that has been made to vendor master file during last one year.
    Please help

    Hi,
    1. you can use MK04 to see the change made in vendor master since past dated.
    2. use MK02/03--> Extra> Administrative data, to find out the for particular vendor creation date & account group by which users.
    hope it helps...
    manoj singh

  • How can I change the file creation date?

    I recently downloaded more than 1,000 photos from my vacation. I'm preparing to burn DVDs for a friend, and I noticed that when I copy the photos to the desktop, they don't all have the same date. I have read a couple of discussions here about the difference between photo creation date and file creation date, and I understand the difference. But something seems odd to me.
    For purposes of illustration, let's take two photos: "A" was taken with the camera in the landscape position (how one normally holds a point-and-shoot); "B" was taken with the camera held in the portrait position (rotated 90 degrees). The photos were taken on April 24, about three minutes apart, but not imported into iPhoto until May 19.
    In iPhoto, both files show the actual creation date. Yay!
    The problem is with the files after having been copied to the desktop.
    When copied to the desktop, the info panel for photo "A" shows April 24 for both the "created" and "modified" dates. Photo "B," however, shows May 19 for the "created" and "modified" dates.
    Apparently, when the "B-style" photos were imported into iPhoto, the app automatically rotated them so that they are viewed correctly (without having to turn your head sideways). This is a very nice feature, but the result is that the file date changes.
    Is there any way to change this? I want the DVD to show the date the photo was created, not imported to iPhoto. Picky, I know … but I'm like that. 

    Apparently, when the "B-style" photos were imported into iPhoto, the app automatically rotated them so that they are viewed correctly (without having to turn your head sideways). This is a very nice feature, but the result is that the file date changes.
    Correct.  Your camera has an Auto-Rotate feature. However, the camera does not actually rotate any pixels in the file, but instead flags it with an instruction: "Display me this way". This is a tag in the Exif metadata. When you import a file with this tag iPhoto creates a modified version. It does this because most of the apps that integrate with it -  email clients, word processors etc - simply don't understand this Exif tag. So if you used the shot in a word processing doc, uploaded it to many Web site etc, the shot would come out sideways.
    iPhoto has nothing to say about File dates. There are various file utilities that will edit the dates on Files
    http://www.macupdate.com/app/mac/11143/a-better-finder-attributes
    for instance. But there are otheers, search on  MacUpdate
    Regards
    TD

  • How can i change the Creation Date of a video (mts-Format)?

    I work with Phohoshop Elements 13 an i use Online-Album (Revel)
    My Problem:
    I would like to change the Creation Date of a Video-File (mts-Format). I don't no why but the date (in Metadata) is wrong and i would like it to change. If i change it in Photoshop Elements the Date (Edit... Change Date...) it seems that the date has changed, but in reality in the Metadata is still the wrong date (see attachment).
    Why this ist important for me:
    The Adobe Revel (Online-Album) takes always the date from the metadata which is wrong.
    Any idea how i can resolve my Problem?
    How i can change the Metadata?

    Hi,
    Did you get help ? Or do you have a work around ? I have about 20.000 Pictures and countless videos to organize myself.
    I just ran into the same problem. Except that after a while Adobe will undo the changes I have made to the date.
    Here's a  screen shot I just made of one of the files.
    Look at this one ! This one is really interesting:
    After changing the date to : 1889 . Adobe changed it to 01.01.1970 00:59

  • Where to get BW Metadata: owner, creation date, change date of a query / WS

    Hello,
    I need a report over the existing queries / worksheets and the owner, creation date, change date of a query etc.
    You see some of the information when you go over query properties in the query designer. But you see only the information of one (the opened) query. And you have to do this for every query ...
    My idea is to go over BW Metadata in the technical content.
    Here is the cube BW Metadata 0BWTC_C08
    (The InfoCube BW Statistics u2013 Metadata contains metadata from the Metadata Repository.)
    Is this the way to do it? Or any other suggestions u2026
    Can I get infos about used structures , etc over this way
    Thanks Markus

    I had to work on an other subject:
    But now the source of information is clear:
    RSRREPDIR - index of all queries
    RSZELTDIR -  index of all queries-components
    RSRWORKBOOK - Verwendungsnachweis für Berichte in Workbooks
    RSRWBINDEX - List of binary large objects (Excel workbooks)
    RSRWBINDEXT - Titles of binary objects (Excel workbooks) in InfoCatalog
    The tables are to join over
    RSRREPDIR.COMPUID  = RSZELTDIR.ELTUID
    RSZELTDIR.TEXTLG  contains the description
    RSRWORKBOOK.GENUID  = RSRREPDIR.GENUID
    RSRWBINDEXT and RSRWBINDEX are connected over WORKBOOKID
    I'd like to put the information of all of this tables in a cube and define a query on it.
    I have to define new datasource, infosource to get the data in the cube.
    Right?
    Now i see some existing datasource objects in the technical content.
    0TCTQUERID, 0TCTQUERID_TEXT, 0TCTQUERY, 0TCTQUERY_TEXT
    I can't open them to look in. But they might be helpfull. Anybody used them?
    Markus

Maybe you are looking for

  • Apple will not boot up after RAM upgrade

    I purchased 2 Centon 2GB (PC2-5300 SO-DIMM DDR2-667) sticks of ram. I know my machine's max is 3GB. I read that 2 2GB sticks will work with my model. The computer will recognize 4GB, but only use 3GB. After I install the RAM and turned the computer o

  • PCR in Portal level

    Dear Friends, i am currently working Mss PCR  i made all form in pcr when i generated in portal level i d,t want choose ant employee, i want generated diffrent department it is  posible to do like that if posiblw like that scnarios tell me what preRe

  • Firefox blocking my plug-in for last pass

    how do I get the last pass plug-in to appear on my task bar like I had before and work .? It is blocking it somehow.

  • H.P. non existent customer service.

    What an utter shambles Hewlett Packard is. Take your money and thats it. I cannot even find my query on this site and if it is there donot expect an answer any way. Fancy having to go on a site like this to get any service at all. This from a multimi

  • 5 won't stop looking for network after successful connection

    iPhone5 won't stop looking for wifi network after successful connection. Told by tier2 support it is software issue. Complete reset didn't work Thanks