Skip navigation.
 
mlRe: Find the 'Application Support' folder
FROM : Jacob Chapa
DATE : Mon Oct 18 18:18:14 2004

All in cocoa:

NSString* dest = @"~/Library/Application Support/";
NSString* absoluteDest = [dest stringByExpandingTildeInPath];
NSFileManager *mgr = [NSFileManager defaultManager];

//see if file exists
if(![mgr fileExistsAtPath:absoluteDest])
   ...blah

Related mailsAuthorDate
No related mails found.