mirror of
https://github.com/HMCore/Orbot.git
synced 2026-01-20 17:04:05 +00:00
11 lines
241 B
Kotlin
11 lines
241 B
Kotlin
package de.wulkanat.extensions
|
|
|
|
import java.io.File
|
|
|
|
fun File.ensureExists(defaultText: String? = null): File {
|
|
if (!this.exists()) {
|
|
this.createNewFile()
|
|
this.writeText(defaultText ?: return this)
|
|
}
|
|
return this
|
|
} |