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

com.facebook.react.utils.FileUtils.kt Maven / Gradle / Ivy

Go to download

This is the Hyperswitch SDK for Android, providing seamless integration with the Hyperswitch platform.

There is a newer version: 0.75.2.1
Show newest version
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

package com.facebook.react.utils

import java.io.File

internal fun File.moveTo(destination: File) {
  copyTo(destination, overwrite = true)
  delete()
}

internal fun File.recreateDir() {
  deleteRecursively()
  mkdirs()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy