Skip to content

Instantly share code, notes, and snippets.

@DevKang
Created July 6, 2016 06:38
Show Gist options
  • Save DevKang/a94cb1d6c45790dabc034d5c0708fda3 to your computer and use it in GitHub Desktop.
Save DevKang/a94cb1d6c45790dabc034d5c0708fda3 to your computer and use it in GitHub Desktop.
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
...
var URL:NSURL
var completeFilePath:String
for file in documents {
completeFilePath = basePath + "/" + file
URL = NSURL(fileURLWithPath: completeFilePath)
print(URL)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment