28 lines
876 B
Objective-C
28 lines
876 B
Objective-C
//
|
|
// NSFileManager+DirectoryLocations.h
|
|
//
|
|
// Created by Matt Gallagher on 06 May 2010
|
|
//
|
|
// Permission is given to use this source code file, free of charge, in any
|
|
// project, commercial or otherwise, entirely at your risk, with the condition
|
|
// that any redistribution (in part or whole) of source code must retain
|
|
// this copyright and permission notice. Attribution in compiled projects is
|
|
// appreciated but not required.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
//
|
|
// DirectoryLocations is a set of global methods for finding the fixed location
|
|
// directoriess.
|
|
//
|
|
@interface NSFileManager (DirectoryLocations)
|
|
|
|
- (NSString *)findOrCreateDirectory:(NSSearchPathDirectory)searchPathDirectory
|
|
inDomain:(NSSearchPathDomainMask)domainMask
|
|
appendPathComponent:(NSString *)appendComponent
|
|
error:(NSError **)errorOut;
|
|
- (NSString *)applicationSupportDirectory;
|
|
|
|
@end
|