All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.inforion.lab403.common.extensions.os.kt Maven / Gradle / Ivy

There is a newer version: 0.3.5
Show newest version
package ru.inforion.lab403.common.extensions

object os {
    val name = System.getProperty("os.name").toLowerCase()

    val windows = name.indexOf("win") >= 0
    val mac = name.indexOf("mac") >= 0
    val unix = name.indexOf("nix") >= 0 || name.indexOf("nux") >= 0 || name.indexOf("aix") > 0
    val solaris = name.indexOf("sunos") >= 0

    val type = when {
        windows -> "win"
        mac -> "osx"
        unix -> "uni"
        solaris -> "sol"
        else -> "unknown"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy