Skip to content

Instantly share code, notes, and snippets.

@sri
Last active May 18, 2017 19:48
Show Gist options
  • Save sri/cfcf5b81d7032582d470ceeeb651e9a1 to your computer and use it in GitHub Desktop.
Save sri/cfcf5b81d7032582d470ceeeb651e9a1 to your computer and use it in GitHub Desktop.
Kotlin version of move last downloaded file (from ~/Downloads) into the current directory
import java.nio.file.Paths
import java.io.File
fun main(args: Array<String>) {
var sortedFiles = Paths.get(System.getProperty("user.home"), "Downloads").
toFile().
listFiles()?.
sortedBy { it.lastModified() }?.
reversed()
if (sortedFiles == null || sortedFiles.size == 0) {
println("Nothing in ~/Downloads")
return
}
var mostRecent = sortedFiles[0]
var newName = Paths.get(".", mostRecent.getName()).toFile()
if (newName.exists()) {
println("$newName already exists...doing nothing")
} else {
mostRecent.renameTo(newName)
println("moving $mostRecent to $newName")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment