• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: drop folders on dock
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: drop folders on dock


  • Subject: Re: drop folders on dock
  • From: Wilker <email@hidden>
  • Date: Fri, 12 Aug 2011 12:44:46 -0300

Thanks dude,

That worked for me (but I will never figure out by myself...).
---
Wilker Lúcio
http://about.me/wilkerlucio/bio
Kajabi Consultant
+55 81 82556600



On Fri, Aug 12, 2011 at 12:39 PM, Fritz Anderson <email@hidden>wrote:

> On 12 Aug 2011, at 12:29 AM, Wilker wrote:
>
> > I'm trying to accept folder drops on dock icon, but I can't find how to
> do
> > it...
> > I'm already receiving some file types (I just had to declare them on
> > Document Types), but I can't find where I configure it for accepting
> folders
> > too...
>
> I have a project that does this, but it's _very_ old (Tiger, 2007), so if
> there's a better way, I hope someone will chime in...
>
> In the Info tab of the Target editor (Xcode 4), declare a folder document
> type. Set LSTypeIsPackage to NO, and CFBundleOSTypes to a single element,
> 'fold'.
>
> My app was non-document, and handled only folders, so my application
> delegate had the method
>
> - (BOOL) application: (NSApplication *) theApp
>            openFile: (NSString *) aPath
> {
>    NSFileManager *     fm = [NSFileManager defaultManager];
>    BOOL                isDirectory;
>
>    if ([fm fileExistsAtPath: aPath isDirectory: &isDirectory] &&
> isDirectory) {
>        [[NSDocumentController sharedDocumentController]
>         noteNewRecentDocumentURL: [NSURL fileURLWithPath: aPath]];
>        [self setDirectory: aPath];
>        return YES;
>    }
>    else
>        return NO;
> }
>
> Probably you should be looking for the UTI public.directory instead.
>
>
>        — F
>
>
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

References: 
 >drop folders on dock (From: Wilker <email@hidden>)
 >Re: drop folders on dock (From: Fritz Anderson <email@hidden>)

  • Prev by Date: Re: drop folders on dock
  • Next by Date: NSPasteboardItem kPasteboardTypeFileURLPromise
  • Previous by thread: Re: drop folders on dock
  • Next by thread: core data, boolean attribute, and dynamic
  • Index(es):
    • Date
    • Thread