com.lightningkite.khrysalis.util.File.ext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-plugin-common Show documentation
Show all versions of kotlin-compiler-plugin-common Show documentation
Common translational tools between Typescript and Swift.
The newest version!
package com.lightningkite.khrysalis.util
import java.io.File
fun File.checksum(): String {
return this.readText().hashCode().toString()
}
val File.unixPath: String get() = this.path.replace('\\', '/')
val File.unixAbsolutePath: String get() = this.absolutePath.replace('\\', '/')
© 2015 - 2024 Weber Informatics LLC | Privacy Policy