「Kotlin」copy()でフォルダをコピーするサンプル

書式
public static Path copy(Path source,Path target,CopyOption… options) throws IOException
使用例

import java.nio.file.Files
import java.nio.file.Paths
import java.io.IOException

fun main() {
    val srcDir ="C:\\data\\info"
      val destDir ="C:\\data\\prj\\info"
      
    val srcPath = Paths.get(srcDir)
    val destPath = Paths.get(destDir)

    try {
        Files.copy(srcPath, destPath)
    } catch (e: IOException) {
        e.printStackTrace()
    }
}

 

Kotlin

Posted by arkgame