I know how to check if a plist file does exist...
if (![[NSFileManager defaultManager] fileExistsAtPath:plistPath]) {
//..etc
}
I would like to know if there is a way to check if a plist file does not exist?
I am having some issues trying to use something from my plist when it's not present, as I create the plist later. So I would like to check if the plist is not present in the directory. I will pass some default values to the objects I am going to use. That way I will not get an error; the if statement where I am comparing these values will not throw a fit, and later will get populated with the correct data.
if (![[NSFileManager defaultManager] fileExistsAtPath:plistPath]) {}checks if it does NOT exist.if ([[NSFileManager defaultManager] fileExistsAtPath:plistPath]) {}checks if it DOES exist. – Ali Hamze May 2 '12 at 3:09(![[NSFileManager defaultManager] fileExistsAtPath:plistPath]) {}is checking if file dose exist and([[NSFileManager defaultManager] fileExistsAtPath:plistPath])checks to see if file doesn't exists. I know this because I have deleted my plist file from my bundle and then added breakpoints at both if statments.. when the file dose not exists it enters([[NSFileManager defaultManager] fileExistsAtPath:plistPath])when it exists it enters(![[NSFileManager defaultManager] fileExistsAtPath:plistPath])– C.Johns May 2 '12 at 3:47