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

com.github.woojiahao.utility.extensions.FileExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.utility.extensions

import java.io.File

/**
 * Returns the target file has an extension that matches any of
 * the supplied [fileTypes].
 */
fun File.isFileType(vararg fileTypes: String) = fileTypes.any { extension == it }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy