You might want to take a look at .canonicalPathKey
(NSURLCanonicalPathKey
). On Apple platforms a lot of the standard UNIXy paths exist within /private/
, with corresponding symlinks from the root. So /etc/
is actually /private/etc/
.
$ ls -ld /etc
lrwxr-xr-x@ 1 root wheel 11 10 Dec 2016 /etc -> private/etc
$ ls -ld /private/etc
drwxr-xr-x 131 root wheel 4454 16 Jan 08:33 /private/etc
If you don’t canonicalise the paths you can get tripped up by this.
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"