I need to access a shared file hosted on a mac shared folder, However when I directly pass the path to the NSFileManager it reports as file does not exist.
NSURL *fileURLPath = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@,%@",IP,PATH ]];
if ([[NSFileManager defaultManager] fileExistsAtPath:[fileURLPath path]])
{
}
I believe it's due to the authentication . How should handle or pass the credentials using the NSFileManager ?