Skip to content

Instantly share code, notes, and snippets.

@ch8n
Last active April 5, 2021 17:51
Show Gist options
  • Save ch8n/e819297b439e1dc7e9435ba2ab58d3c0 to your computer and use it in GitHub Desktop.
Save ch8n/e819297b439e1dc7e9435ba2ab58d3c0 to your computer and use it in GitHub Desktop.
fun deleteImage(){
val imageFile : File ? = ...
if(imageFile != null) {
// 👇 smart casted imageFile into non nullable
if(imageFile.exists()) imageFile.delete()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment