• 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: Hidden file and 64bits Cocoa
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Hidden file and 64bits Cocoa


  • Subject: Re: Hidden file and 64bits Cocoa
  • From: James Walker <email@hidden>
  • Date: Mon, 23 Aug 2010 13:56:21 -0700

On 8/23/2010 6:57 AM, Olivier Tristan wrote:

I'm looking for a way to get the hidden attribute of a file using cocoa
as my applications is going to be ported to 64bits.
I've took a look to NSFileManager and it do not seems to provide such
facility.

I used to do this

|FSRef ref;
OSStatus err = FSPathMakeRefWithOptions(path,
kFSPathMakeRefDoNotFollowLeafSymlink, &ref, 0);
if (err == noErr)
{
LSItemInfoRecord info;
err = LSCopyItemInfoForRef(&ref, kLSRequestBasicFlagsOnly, &info);
if (err == noErr)
{
return ((info.flags & kLSItemInfoIsInvisible) != 0);
}
}
return false;|

but this code required Carbon as far as I know.


So what? The UI parts of Carbon didn't make it to 64 bits, but as far as I know, FSPathMakeRefWithOptions and LSCopyItemInfoForRef are fine.
Note that CarbonCore.framework is within CoreServices.framework.
--
James W. Walker, Innoventive Software LLC
<http://www.frameforge3d.com/>
_______________________________________________


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


  • Follow-Ups:
    • Re: Hidden file and 64bits Cocoa
      • From: Olivier Tristan <email@hidden>
References: 
 >Hidden file and 64bits Cocoa (From: Olivier Tristan <email@hidden>)

  • Prev by Date: Re: Hidden file and 64bits Cocoa
  • Next by Date: Re: Saving Managed Object Context
  • Previous by thread: Re: Hidden file and 64bits Cocoa
  • Next by thread: Re: Hidden file and 64bits Cocoa
  • Index(es):
    • Date
    • Thread