Skip to content

Instantly share code, notes, and snippets.

@mansi-27
Created June 7, 2018 16:19
Show Gist options
  • Select an option

  • Save mansi-27/1d401430060c84b232e84a16bc17d7a5 to your computer and use it in GitHub Desktop.

Select an option

Save mansi-27/1d401430060c84b232e84a16bc17d7a5 to your computer and use it in GitHub Desktop.
if FileManager.default.fileExists(atPath: fileURL.path) {
do {
let data = try Data(contentsOf: fileURL)
/// Sweetie, this is the data you need to upload as the multipart form data
/// via URLSession or Alamofire, Moya, whatever Network Library you're using! 🍻
} catch {
print(error.localizedDescription)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment