Hi All, I have a Chose File dialog for the user to select a file (directory in this case). I retrieve the absolute path of the chosen directory. However, am not able to list the contents of the directory.
In a Swift playground this is a little demo I made let fs = NSFileManager.defaultManager() fs.isReadableFileAtPath("~/Documents") // false fs.isReadableFileAtPath("Documents") // true fs.isReadableFileAtPath("/Users/tim/Documents") // false If i print out fs.currentDirectoryPath dI do indeed get a weird path (assuming that this is the root of where the application has been built to and run from) How may I access files/directories such as “/Users/tim/Documents”? Many thanks Tim _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com