Skip to content

Instantly share code, notes, and snippets.

@MyricSeptember
Created March 19, 2024 13:31
Show Gist options
  • Save MyricSeptember/79065c001e95d16ba1bfb33edda11bbd to your computer and use it in GitHub Desktop.
Save MyricSeptember/79065c001e95d16ba1bfb33edda11bbd to your computer and use it in GitHub Desktop.
Load and save PDF
result?.pdf?.let { pdf ->
val fileOutputStream = FileOutputStream(
File(
filesDir,
"$documentName.pdf"
)
)
contentResolver.openInputStream(pdf.uri).use {
it?.copyTo(fileOutputStream)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment