What does the /private prefix on an iOS file path indicate?
I tried this from the debugger and discovered that URLByResolvingSymlinksInPath “fixes” the /private/ addition. (lldb) p (NSURL *)[NSURL fileURLWithPath:@”/private/var” isDirectory:YES] (NSURL *) $1 = 0x1fd9fc20 @”file://localhost/private/var/” (lldb) po [$1 URLByResolvingSymlinksInPath] $2 = 0x1fda0190 file://localhost/var/ (lldb) p (NSURL *)[NSURL fileURLWithPath:@”/var” isDirectory:YES] (NSURL *) $7 = 0x1fd9fee0 @”file://localhost/var/” (lldb) po [$7 URLByResolvingSymlinksInPath] $8 = 0x1fda2f50 file://localhost/var/ as … Read more