Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3300922
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:42:16+00:00 2026-05-17T20:42:16+00:00

I am trying to open the Finder in a certain package. I got this

  • 0

I am trying to open the Finder in a certain package.

I got this file, Example.backup, which is just a folder with an extension. In the finder, you can right click it (Show Package Contents) and I will be presented with the files. (there is no Contents folder).

I’ve tried opening it with NSWorkspace’s methods but none open the finder at that directory, they either select the file or open it with the associated program.

Is there a way to do this in AppleScript maybe? Or Cocoa?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T20:42:16+00:00Added an answer on May 17, 2026 at 8:42 pm

    Since no one answered yet, there might not be a one line solution.

    All I could think of was a workaround: call /usr/bin/open with the -R option, which will reveal the given file in Finder. Since you want to show the contents of the package, you will have to reveal any file that is inside (not the package itself).

    Downsides: won’t work on empty package (but then you could just reveal the package), also the Finder window will show a selection on the last item.

    NSString *pathToBundle = @"/tmp/test.app";
    NSFileManager *fm = [[[NSFileManager alloc] init] autorelease];
    
    // get the last file/directory in the package
    // TODO: error handling / empty package
    NSString *lastItemInBundle = [[fm contentsOfDirectoryAtPath:pathToBundle error:NULL] lastObject];
    
    // reveal this file in Finder, by using /usr/bin/open
    // see -R option in the manpage
    NSTask *open = [[[NSTask alloc] init] autorelease];
    [open setLaunchPath:@"/usr/bin/open"];
    [open setCurrentDirectoryPath:pathToBundle];
    [open setArguments:[NSArray arrayWithObjects:@"-R", lastItemInBundle, nil]];
    [open launch];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to do the following tell application Finder open location smb://user:password@filesystem/folder end
I'm trying to open a file with this: document = builder.parse(new File(Data.xml)); and I'm
When trying to open a file using this command: $fd = fopen('majestic_files/majestic_record.txt','w'); I get
Basically I'm trying to open a URL in my .NET application. This can be
I'm trying to open a folder in explorer with a file selected. The following
Trying to open an image for editing in C# I can open the file
I am trying to open this file in java and i want to know
I am trying open a very large file in Emacs and it fails to
I'm trying to open a pop-up menu from a NSToolbarItem. I tried following this
I am trying to make an application using AppleScript which can remind to check

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.