Skip to content

Instantly share code, notes, and snippets.

@kgilmer
Created April 9, 2018 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kgilmer/e3d463cad20eba1bf55703f148957827 to your computer and use it in GitHub Desktop.
Save kgilmer/e3d463cad20eba1bf55703f148957827 to your computer and use it in GitHub Desktop.
fun main(args: Array<String>) {
File(args[0])
.walk()
.filter { it.isFile && it.extension.equals("mp3", ignoreCase = true) }
.forEach { sourceFile ->
println("Reading $sourceFile")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment