Skip to content

Instantly share code, notes, and snippets.

@Senemix29
Created March 18, 2021 03:02
Show Gist options
  • Select an option

  • Save Senemix29/224e7292763a1df71cad3c948ac91c60 to your computer and use it in GitHub Desktop.

Select an option

Save Senemix29/224e7292763a1df71cad3c948ac91c60 to your computer and use it in GitHub Desktop.
Dummy example class to be shown embed at Medium
class FileUtils {
fun getDirectoryFilesListSize(context: Context, fileDirectory: String): Int {
val directory = File(context.filesDir, fileDirectory)
val fileList = directory.listFiles().orEmpty()
return fileList.size
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment