Skip to content

Instantly share code, notes, and snippets.

@sourcerebels
Created July 5, 2011 17:03
Show Gist options
  • Save sourcerebels/1065283 to your computer and use it in GitHub Desktop.
Save sourcerebels/1065283 to your computer and use it in GitHub Desktop.
Recorre la ruta /tmp/ recursivamente y muestra por pantalla la ruta absoluta de cada uno de sus ficheros
new File("/tmp/").eachFileRecurse { file ->
println file.absolutePath
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment