Get fullpath or convert to fullpath
When using let directoryEnumerator = FileManager().enumerator(at: ... in Swift 3, I get all files from the folder, e.g. "file:///Volumes/MacOS/fasttemp/Fotos/" The results are not including the leading path (here "/Volumes/MacOS"). So I get "file:///fasttemp/Fotos/2005/" How can I get the fullpath (directly from the enumerator) or convert them. I want to use URL functions, not string function manipulating by assumptions. If "MacOS" is the name of your current startup disk then "/Volumes/MacOS" is a symbolic link to "/", so both "/fasttemp/Fotos/2005/" and "/Volumes/MacOS/fasttemp/Fotos/" are