Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. try {
  2. val sas = args[0]
  3. val filePath = args[1]
  4. val fileName = args[2]
  5.  
  6. val container = CloudBlobContainer(URI.create(sas))
  7. val blob = container.getBlockBlobReference(fileName)
  8.  
  9. blob.uploadFromFile(filePath)
  10. successAction()
  11. } catch (ex: Exception) {
  12. failedAction()
  13. ex.printStackTrace()
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement