Hi,
How can I determine when the file I'm downloading is complete? Is there a callback or something?
I'm using the Swifty dropbox API to download a video file (provided by the tutorial...)
client.files.download(path: dbPath, destination: destination).response
{
response, error in
if let (metadata, url) = response {
} else {
print(error!)
}
}