I'm given a string. It will either be a local path to a file that exists or a fully qualified remote https url ending in a file component.
If it is a local path I want to use NSURL(fileURLWithPath: String).
If it is an URL, I want to use NSURL(string: String).
What is the simplest / most reliable way to decide which to use?
 
    