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

iosArm64Test.maryk.createFolder.kt Maven / Gradle / Ivy

package maryk

import platform.Foundation.NSFileManager

actual fun createFolder(path: String) = Unit.wrapWithErrorThrower { error ->
    NSFileManager.defaultManager().createDirectoryAtPath(
        path = path,
        withIntermediateDirectories = true,
        attributes = null,
        error = error
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy