更具体地说,如何在Scala中使用随机名称创建新文件夹?在Java中,代码是这样的: val folderPath: Path = Paths.get("src/test/resources/test-documents/") val tmpDir: Path = Files.createTempDirectory(folderPath, null) 谢谢大家 最佳答案 相同的调用将在Scala中工作。所有的Java API都是可互操作的。