vote up 3 vote down star

How to check if a folder exists in objective-c?

flag

3 Answers

vote up 4 vote down check

Use NSFileManager's fileExistsAtPath:isDirectory: method. See Apple's docs here.

link|flag
vote up 1 vote down

[NSFileManager fileExistsAtPath:isDirectory:]

Returns a Boolean value that indicates whether a specified file exists.

- (BOOL)fileExistsAtPath:(NSString *)path isDirectory:(BOOL *)isDirectory

Parameters
path
The path of a file or directory. If path begins with a tilde (~), it must first be expanded with stringByExpandingTildeInPath, or this method will return NO.

isDirectory
Upon return, contains YES if path is a directory or if the final path element is a symbolic link that points to a directory, otherwise contains NO. If path doesn’t exist, the return value is undefined. Pass NULL if you do not need this information.

Return Value
YES if there is a file or directory at path, otherwise NO. If path specifies a symbolic link, this method traverses the link and returns YES or NO based on the existence of the file or directory at the link destination.
link|flag
vote up 1 vote down

This is platform dependent. On POSIX systems, use the stat() system call. On Windows, uhm, there's probably something in the Windows API for this too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.