FileUtils.h
changeset 3 8fad19466c59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/FileUtils.h	Sun Apr 06 19:13:27 2008 -0700
     1.3 @@ -0,0 +1,17 @@
     1.4 +//
     1.5 +//  FileUtils.h
     1.6 +//  MYUtilities
     1.7 +//
     1.8 +//  Created by Jens Alfke on 1/14/08.
     1.9 +//  Copyright 2008 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <Foundation/Foundation.h>
    1.13 +
    1.14 +
    1.15 +FOUNDATION_EXPORT OSStatus PathToFSRef( NSString *path, FSRef *outFSRef );
    1.16 +FOUNDATION_EXPORT OSStatus FSRefToPath( const FSRef *fsRef, NSString **outPath );
    1.17 +
    1.18 +FOUNDATION_EXPORT BOOL CheckOSErr( OSStatus err, NSError **error );
    1.19 +
    1.20 +FOUNDATION_EXPORT NSString* AppSupportDirectory(void);