Where are "Recent Items" stored?

Ask a Question related to Mac Programming, Design and Development.

  1. #1

    Default Where are "Recent Items" stored?

    Hi,

    This is somewhat of a bizarre request. I am wondering where the "Recent
    Items" list in OSX (accessible from the Apple menu) is stored. In Classic,
    this was just a folder with aliases to recently opened Applications and
    Documents.

    What I would like to do is clear an application from this list (after it
    shows up). I haven't been able to find any information on this anywhere.
    Does anybody have any ideas?

    Thanks,

    Mike H.

    Mike H. Guest

  2. Similar Questions and Discussions

    1. Getting an "Items-Capacity" attribute without it being valid
      Hi there, I've been building a very simple "bread crumbs" control that has a collection of BreadCrumb objects. Works pretty alright atm. There's...
    2. CS dialog box "Recent Places" menu items doubled?!?!?!?!?
      Hi folks... My "Recent Places" menu has every item duplicated - any ideas as to what this can be? Just started happening recently - used to be...
    3. Unable To Open "Recent Files"
      I've seen this discussed before, but since the Forum Search Engine does not seem to be working, I'll ask it again: I am unable to open files from the...
    4. recent auto update and now have "finalizing installation" running
      across the top of my screen when in IE. The updates were: 817606 security update win xp 823559 security update win microsoft windows. Any help...
    5. what was solution to recent "can't log in" problem
      As I recall a recent security update in Jaguar introduced a problem where people can't log in. What was the fix for this?
  3. #2

    Default Re: Where are "Recent Items" stored?

    > This is somewhat of a bizarre request. I am wondering where the "Recent
    > Items" list in OSX (accessible from the Apple menu) is stored.
    Here:
    ~/Library/Preferences/com.apple.recentitems.plist

    Regards,
    Mani

    Manfred Lippert Guest

  4. #3

    Default Re: Where are "Recent Items" stored?

    In article <BB8FBD4D.1A174%mani@mani.de>,
    Manfred Lippert <mani@mani.de> wrote:
    >> This is somewhat of a bizarre request. I am wondering where the "Recent
    >> Items" list in OSX (accessible from the Apple menu) is stored.
    >
    >Here:
    >~/Library/Preferences/com.apple.recentitems.plist
    But don't try to do it by editing that file, the contents are
    sometimes cached. Use the 'defaults' command to do it instead.
    'man defaults' for details.

    If you're programming in Cocoa then you have even simpler
    access to the defaults system.


    Simon Slavin Guest

  5. #4

    Default Re: Where are "Recent Items" stored?

    In article <BB92A9D8966853DD44@10.0.1.2>,
    [email]slavins@hearsay.demon.co.uk[/email]@localhost (Simon Slavin) wrote:
    > In article <BB8FBD4D.1A174%mani@mani.de>,
    > Manfred Lippert <mani@mani.de> wrote:
    >
    > >> This is somewhat of a bizarre request. I am wondering where the "Recent
    > >> Items" list in OSX (accessible from the Apple menu) is stored.
    > >
    > >Here:
    > >~/Library/Preferences/com.apple.recentitems.plist
    >
    > But don't try to do it by editing that file, the contents are
    > sometimes cached. Use the 'defaults' command to do it instead.
    > 'man defaults' for details.
    >
    > If you're programming in Cocoa then you have even simpler
    > access to the defaults system.
    In either Cocoa or Carbon, CFPreferences is a good API to use for this.

    meeroh

    --
    If this message helped you, consider buying an item
    from my wish list: <http://web.meeroh.org/wishlist>

    Miro Jurisic Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139