
com.amplitude.id.utilities.FileUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics-core Show documentation
Show all versions of analytics-core Show documentation
Amplitude Kotlin Core library
The newest version!
package com.amplitude.id.utilities
import java.io.File
import java.io.IOException
@Throws(IOException::class)
fun createDirectory(location: File) {
if (!(location.exists() || location.mkdirs() || location.isDirectory)) {
throw IOException("Could not create directory at $location")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy