Re: Find the 'Application Support' folder
Re: Find the 'Application Support' folder
- Subject: Re: Find the 'Application Support' folder
- From: Jacob Chapa <email@hidden>
- Date: Mon, 18 Oct 2004 11:18:14 -0500
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
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden