Last active
May 18, 2017 19:48
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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