Wrong modified dates in my folders

Hi,
I have this nagging problem for a while, all the "date modified" in most of my folders (application, documents,utility, libraries, download, etc.) are wrong.
They all show up with january dates, some this year, some previous years.Recent modifications are noted as "today" and "yesterday", beyond
that I get january dates.
My date and hour preferences are set ok.
Repaired permissions quite a few times, nothing changed.
Waited for a few system updates (10.7.3 - 10.7.2 - 10.7.1) hoping it would correct itself, but no.
Any clue?
Thank's

Go to System Preferences > Language & Test > Formats. Click the "Customize" button in the Dates section.
The four formatting boxes in the upper portion of tat screen should contain only blue ovals (plus plain text separators, as needed, such as commas, etc.). If any of them contain a plain text entry, such as the word January, delete that plain text and replace it with the appropriate blue oval dragged up from the lower section.
Note - the text displayed on each oval is a representative label, and is not meant to reflect the current date info.

Similar Messages

  • Displaying wrong Modified Date

    Hi All,
    Files uploaded in KM is not reflecting correct Modified Date.
    However when I try to view the Details on right click it does reflect the correct Modified Date. Can Someone help me find out why these dates in the view and Details Property are not consistence.
    I am uploading the files to the KM through a UNC path.
    Thanks
    Deepak

    Hi,
    Do you compare the Modified Date on the file from OS and from KM?
    If so then KM has its property Changed On, so I think it is the date on which you upload the document.
    Regards,
    Praveen Gudapati

  • Wrong Modified Date on Files

    When I tried opening a file on my macbook pro this evening, I was greeting by grayed out, inaccessible files, all with a modified date of January 24, 1984 at 2:00 am.  Anyone know what might have caused this and/or how to fix it.
    Thanks!

    Try dragging the files into a new folder. If there's no change, and you have a backup of the files, restore them. Otherwise post your results.

  • File Modified Date Wrong

    Hi Everyone,
    Happy New Year! I have a question. I have a 2012 MacBook Pro running 10.10.1 connected to a Seagate GoFlex Home NAS. This is the main storage location for all my files (work and personal). I am having a very annoying problem, all my file modified dates are showing September 2029! When I access the same file in my Windows 7 VM the date is correct. The date and time are set correctly in OS X and on the NAS drive. Any ideas?

    Hi Allan,
    The issue was caused by the date on the NAS being set to automatic. I manually set the correct time, and all was ok after!
    Hope this works for you!
    Mark

  • *.eml Time Stamp - Select File in Windows Explorer Changes the Modified Date

    The Windows Live Mail *.eml files time stamp is getting changed to the current date when the file is selected in the Windows Explorer! I save backup copies of important E-mails to folders on the Hard Drive and then synchronize them with the same folders on other LAN Hard Drives for backup archives. When these E-mail files are selected or opened from the Windows Explorer in the Windows 7 OPS the Modified Date Time Stamp is changed to the current date automatically! This action creates a real problem when doing later synchronizations of all of the folders! The date will not be the original date of the E-mail and the original file will be over copied with the file with the newest date stamp. I stopped Indexing on the *.eml files and that stopped the time stamp change when overcopy synchronization, but if the file is selected during a viewing in Windows Explorer then the Time Stamp is updated to the current date again! A solution to this problem would be greatly appreciated if anybody knows of one. Thanks - - - Shorto

    The Date and Timestamp changing issue in Windows 7 has a two part fix!
    1. Disable the Indexing of the *.eml file type in the Indexing Options located by Clicking on "Control Panel" -  "Indexing Options" - Advanced Button - File Types Tab - scroll down to the .eml file type and uncheck the Box then click OK to finish, so
    that the Email type of files won't be Indexed.
    2. Delete the Registry Entry listed below, be sure to Export and Save the original Key so it could be Restored if something goes wrong!  \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\PropertySystem\PropertyHandlers
     and Delete the .eml entry
    That should fix the problem with the changing Date/Timestamp of Email Files. For more information read CarlS's WindowsSeven Fourm thread where I also have more input:
     http://www.sevenforums.com/browsers-mail/35334-eml-files-timestamps-updated-constantly.html
    This should give you a better understanding on the problem and the Fix. - - - Shorto

  • List View : Opening folder in folder changes modified date in list view

    Since my office upgraded me to 10.5.4, when I flip open a folder in List View, then flip open a sub-folder, the modified date in the original folder changes to now. Opening subsequent folders again changes the modified date of the folder above it. I do not remember this happening in Tiger, and since part of my job involves finding and archiving old files, this is driving me crazy. Can I stop it?
    Jeff Work

    That's interesting, and probably why the original poster had the same issue, but it does not work that way for me with Leopard 10.5.5.
    In list view, the .DS_Store does not get updated when I flip down the folder. The .DS_Store file only gets updated if I open the folder in icon view. That makes sense because the .DS_Store file stores the relative position of the icons in the window.
    However, when I go back to list view, even though the .DS_Store file is updated to the current data and time, the Date Modified of the parent folder does not change.
    This different may be caused by some setting you are using in Finder that most people do not use, or maybe because of some other Mac OS X feature such as File Vault (which I do not use), or maybe some third party software that modifies Finder functionality. I don't know...

  • Get File by modified date and extension then copy to location

    Hello,
    Ill give a brief description of what I am trying to accomplish. We have a bunch of files that are sitting on a deduplication box (Exagrid), we want to try and copy certain files off of this dedup box, however, if we copy EVERYTHING this will fill up our
    entire NAS Device. So, instead, I need to build a script that finds files by a modified date and extension type, then copy those to a specified folder. 
    Here is the code:
    $logfile = "C:\CopyResults.log"
    function LogWrite{
    Param([string]$logstring)
    Add-Content $logfile -Value $logstring
    $date = get-date
    $DateToCompare = (Get-Date).AddDays(-2)
    $Files = Get-ChildItem -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".xlsx"}
    foreach($File in $Files){
    Write-Host "$File was copied to C:\test"
    Copy-Item $File C:\test
    logWrite "$File was copied to c:\test --- $date"
    The file extension is of course just a test, as well as the destination of where these files are to be copied to. Ultimately I would like to build in the functionality that will check the date and delete the files after a certain amount of time has passed and
    then copy new files. For now, though, I would be satisfied with just some insight on my own idea and know where I am going wrong or how to clean this up a little better. The overall issue I having is when I run this portion of the script I get this: Copy-Item
    : Cannot find path 'C:\Users\<username>\<filename>.xlsx' because it does not exist.
    At line:13 char:5
    +     Copy-Item $File C:\test
    +     ~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\Users\<usern...al filename>.xlsx:String) [Copy-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand

    I solved the issue. Here is the full script:
    net use \\netpath\filename /user:<Username> <Password>
    $logfile = "C:\CopyResults.log"
    function LogWrite{
    Param([string]$logstring)
    Add-Content $logfile -Value $logstring
    $date = get-date
    $DateToCompare = (Get-Date).AddDays(-1)
    $VBMs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vbm"}
    $VBKs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vbk"}
    $VIBs = Get-ChildItem \\netpath\filename -Recurse | Where-Object {$_.LastWriteTime -gt $DateToCompare} | Where-Object {$_.Extension -eq ".vib"}
    foreach($VBM in $VBMs){
    Write-Host "$VBM was copied to C:\test"
    Copy-Item $VBM.FullName \\netpath\filename
    logWrite "$VBM was copied to c:\test --- $date"
    foreach($VBK in $VBKs){
    Write-Host "$VBK was copied to C:\test"
    Copy-Item $VBK.FullName \\netpath\filename
    logWrite "$VBK was copied to c:\test --- $date"
    foreach($VIB in $VIBs){
    Write-Host "$VIB was copied to C:\test"
    Copy-Item $VIB.FullName \\netpath\filename
    logWrite "$VIB was copied to c:\test --- $date"
    "In this case you are handing a System.IO.FileSystemInfo.FileInfo object to the Copy-Item cmdlet. I think the cmdlet is probably defaulting to using the .Name property and that is not enough information for the copy to work. When you explicitly give the
    .FullName property to the cmdlet, it now has the information that it needs."
    I found this on Stack Overflow buried in the forums and it resolved all my issues. I have tried using that tool and it works very well, however, Powershell is what I am using for everything and I would like to keep it that way.
    Thank you all for your time and help.

  • Finder doesn't show correct "last modified" dates

    For the longest time, the Tiger Finder has not always shown the correct "last modified" dates for files. Is there any fix or workaround for this?
    Frequently, if I'm working in a folder with a bunch of files in it, and working in each individual file, and viewing the folder in list view, the modified date for each file will not update as I work on the file. Even if I close and reopen the folder, it won't update. Sometimes when I click on an individual file, the date will update. Other times not. If I use "Get Info" to look at the file, then I see its true last modified date.
    I believe this used to be a problem in prior OS's too, and someone recommended a little contextual menu plug-in called "Nudge" to me. I went looking for that, found it, and installed it, but it doesn't do what I want. Now if I "nudge" a file, the Finder instantly marks it as modified right that second. That's not what I want. I need to know the last time the file was TRULY last modified, and I need it to show up immediately.
    I work with a large quantity of files and part of the management scheme is figuring out, at a glance, when each file was last modified, so I can keep track of their development.

    Hi folks,
    This issue has been driving me crazy, and I've been searching everywhere for a solution... today I am happy to report that I found one!
    Limit Point Software has just released a great utility for dealing with this issue where folders have their "Date Modified" altered after you just opened the folder.
    It is called "SyncFF" and you can download at:
    http://www.limit-point.com/Utilities.html
    Here is the product description:
    SyncFF is a drop utility for setting the modification and creation date of folders to the latest modification date of their contained files. This way the modification date of the folder matches the modification date of the "oldest" file it contains. The process is recursive, which implies all subfolders are processed too. Universal Binary, Mac OS X 10.4 and above.
    It works wonderfully, and it is so nice to have the proper modification dates on my folders and projects again.
    I should also say that the developer is very helpful and responsive to feedback.
    Zed

  • Robohelp 10 - Inserting a Last modified date in a topic - how can it be achieved?

    Hi there,
    this is my first post, so apologies if I am in the wrong place...
    I would like to insert a "last modified" date in my topics, but can't figure out how to do this! The Date field inserts today's date whenever the topic is opened, and so doesn't reflect the timeframes of changes accurately.
    I'd appreciate any help on this.
    Thank you
    Caroline

    Hi there
    When you insert the field, look at the options.
    See that option for auto updating? Try clearing it and the field shouldn't auto-populate.
    But note that now the onus is on the help author to ensure they perform the update if they want the date to finally match the current date.
    Cheers... Rick

  • Search by modify date

    Am I missing something obvious here? Today I decided I wanted to find the files I've modified in the last few days. I don't know how! I was playing around with some images from various folders and dates and I thought that would be the easiest way to find the ones I wanted. NOT! It appears both the search box and the metadata box work on capture date. (OK, I wouldn't say that because we know Lightroom has date problems, let me say they work on a date that is not the modify date). Now normally I do want modified files to be stored under the original date, but if I want to search on modify date, then I should be able to do so.
    I can sort on edit time, but that's not the same thing. It would be very difficult to find a particular file in all of my photos sorted by edit time.

    Hi CeemoJenkins,
    Try with t-code S_ALR_87012332 - G/L Account Statements
    There is Icon "Dynamic Selections". This icon you can easily identify which is generally located either after "Execute" icon or "Get Variant" icon. These icons are available on top left of the S_ALR_87012332 screen. Click/Select Icon "Dynamic Selections", you will find fields "Entry date" and "posting Date".
    Enter the date range for june in Entry date field
    Enter the posting date range for May in Posting date field.
    You will able to find the entries made in June for May.
    You can also find the entry date date and posting date fields in t-code FB03.
    You can also get these details from table e.g BKPF. Field names - BKPF-BUDAT, BKPF-CPUDT, BLPF-CPUTM.
    Thanks & Regards,
    ADI

  • Date Modified & Date Created- All the same date

    I have somehow caused all my "Date Modified and Date Created" to have the same date (Month-Day-Year & Time) for all the folders and every piece of work I have in them. How do I get all my files to read their original date created/ modified and saved back again. It's important for the work I do.
    Thank you
    Vietvet68

    I, too, have "date" problems on my MacBook (with operating system Mac OS X). We just got the computer this month and had the Genius Bar download much of our files from our old Dell computer. The problem is that every date is incorrect, from the Created date to the Modified Date. For instance, here are some interesting dates: "Created 2/6/40" or "Modified 1/18/38." Now, the computer SHOULD know that these dates are well into the future. I checked out Preferences, and the date setting is correct. But somehow the Mac system screwed up all the Created and Modified dates on ALL the files it copied from our Dell, and even the current dates (such as the Modified date noted above) have years into the future. If you cannot set the dates correctly in Preferences, where in heck CAN you set them--and why is the Mac making up such odd dates?? Thanks!

  • Hiding modified date in LinkListExplorer

    Hello
    How do I hide the "last modified" date in the LinkListExplorer layoutset?  I was expecting to find it in the "Visible Properties" of the Resource Renderer, but it's not there.
    Thanks!
    Chris
    EP6SP14
    Message was edited by:
            Christopher Griffin

    Christopher,
    not sure if I've got the point. I've tried to think what are you looking for. I have the menu for EU role, went to <i>Home -> Documents -> Overview</i>. Now I saw <i>Favorites</i> (which shows links as you are looking for). Now I found the Favorites iview in the PCD and the iview has the layoutset to <b>LinkListLayout</b>.
    <b>Wrong!</b>
    Again I looked in the PCD into the <i>EU role -> Home -> Documents -> Overview. Looked into the page -> into the iview (KM navigation)</i>. Here the iview I can see the layoutset is <b>ConsumerExplorer</b> and for the root collection is: <b>EntrypointsExplorer</b>. Looked into the <b>ConsumerExplorer</b> (which is used when looking at favorites) and see in <b>ConsumerCollectionRenderer</b> for diplayed properties:
    rnd:icon,rnd:displayname(contentLink)+rnd:action,contentlength,col:rating,rnd:collaborationstatus,modified
    And here is the <b>modified</b>...
    Isn't it that you are looking for?
    Romano

  • When situation causes Firefox cache file to have Windows modified date more recent than the access date?

    I'm reviewing a report from a forensic examination of a hard drive from a Windows machine. In that report are Firefox 3.x cache files where the Windows modified date is more recent than both the Windows created date and the Windows accessed date, with the latter two dates the same. For instance, the modified date might be March 23, 2011 at 10:30 am, and the created and accessed dates might be March 17 at 9:50 pm. What actions, by Firefox, a user, or some other program (other than a date-modification tool) would cause this state of affairs? I'm generally familiar with these dates and under what conditions they change, but have found no doc explaining this particular situation...

    In your example,
    *the site was originally visited on March 17 at 9:50 pm and the cache entry was created; at that time all three dates should be the same
    *the user visited the site again and the information in that cache file was modified on that second visit, March 23, 2011 at 10:30 am
    *my experience makes me agree with the first answer in the first link below that accessed timestamp on Windows system is not always accurate; '''''AND''''' accessed timestamp differs for files and folders as defined in the third link below
    *See:
    **http://superuser.com/questions/232143/windows-7-file-properties-is-date-accessed-always-100-accurate
    **http://msdn.microsoft.com/en-us/library/ms724290%28v=vs.85%29.aspx
    **http://msdn.microsoft.com/en-us/library/aa365739%28v=vs.85%29.aspx

  • IPhoto wrong event date

    Right.
    So, I've recently added all my photos into iPhoto - great.
    But, the problem is...all my old photos were taken on a camera that didn't set a 'Date picture taken' attribute but does have a 'Date modified' attribute (close enough anyway). But, when I add these into iPhoto - they've all got the wrong event dates. Surely iPhoto, if it couldn't find a 'date picture taken' it would have gone with 'date modified' - like picasa 3 does.
    Any help?
    Cheers,
    Tom

    For future reference there's an application, PhotoInfo, that can batch change the EXIF date in photos, either by adding or subtracting a given time differential or by changing the entire date and time entirely. It would be best used on a batch of photos outside of iPhoto before importing. It's great for changing the time when you travel and take photos in a different time zone but didn't resset the camera's clock.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Can't modify date

    I have 5 .mov videos inside an event of 2009, but these videos are wrongly dated 2005. I tried to modify date and hour in iPhoto, even marking "modify originals", it change the date in iPhoto but not in the original files (while it does it perfectly with other pics of the same event).
    The fact is that i want to see everything organised perfectly, and if I browse iPhoto Library folder i find this event in the 2005 folder, rather than in the 2009 one. So, what i wish to do is modify the original files' date and re-import in iPhoto the folder with the modified files, in order to let iPhoto put them in the right 2009 folder.
    Someone has any idea of the reason for which I can't modify these 5 videos' date, unlike all other items?

    When iPhoto modifies the date on a Photo it writes to the Exif metadata of the Photo. Video has no such metadata so iPhoto has nowhere to write this information. Simply, there is no way to do what you want to do.
    and if I browse iPhoto Library folder
    And you shouldn't. This simply isn't supported.
    Regards
    TD

Maybe you are looking for

  • How can I get values from listbox?

    Hi all, I need to get price values from Price List (Inventory -> Item Master Data screen). It's important to get values from field 'Price' BEFORE item will be added/updated. How can I get values from Pricelist listbox? Thanks for any suggestions or s

  • ISteup (or other tool ... ?) for oracle CRM, telecommunications service ord

    Hi, we use oracle Telecommunications Service Ordering 11.5.9. We are looking for a way to get away from manual setup specifically for the modules Inventory, Bill of Materilals, Advanced Pricing, Service Fulfilment management. (Also for configurator b

  • CProjects - Adding a new field to the detail screen of object link

    Hi All, I've a requirement of adding a new field to the detail screen of object link. But the field is a combination of 3 other standard fields. Please let me know how could i realise this functionality? Thanks in advance.

  • Mail unexpectedly quits since install of Mavericks. How to fix?

    How to fix Mail? Crashes frequently since install of Mavericks. Can Mail be 'reinstalled'?

  • HELP! What's this light?? N86

    Hi Forum. I'm still trying to work my new N86 phone...the first N series I've ever had. But when my keypad is locked, and when the phone is on standby mode...the menu button flashes white on and off...I say "flashes" but it's more like it fades on an