我有一个tar.gz格式的文件。我读了它的路径,然后我尝试将它写在我创建的临时目录中。该目录被重写为文件。我究竟做错了什么?我在scala中这样做,但在下面使用java类。
def restore(id: String) = {
Future {
val sourceDir = getSourceFile(id)
val f = {
new File(sourceDir)
}
if (!f.exists())
throw ResourceNotFoundException(s"Failed")
val tmpDir = Files.createTempDirectory("restoreMe")
val p = Paths.get(s"${tmpDir.toAbsolutePath().toString}/")
Files.copy(f.toPath, p, StandardCopyOption.REPLACE_EXISTING);
}
}
答案 0 :(得分:2)
使用此
Path src = f.toPath
Files.copy(src, p.resolve(src.getFileName()), StandardCopyOption.REPLACE_EXISTING);