将文件复制到目录中的子目录
在 Java 中,可以使用多种方法实现将文件从一个目录复制到另一个目录。为了满足将目录中的前 20 个文件复制到其子目录的特定要求,可以使用以下代码:
import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class DirectoryCopier { public static void main(String[] args) throws IOException { // Get the source directory File dir = new File("./source_directory"); // Create the subdirectory String subDirName = "subdirectory"; File subDir = new File(dir, subDirName); boolean success = subDir.mkdir(); // Iterate over the first 20 files in the directory int count = 0; for (File review : dir.listFiles()) { if (count == 20) { break; } // Copy the file to the subdirectory Path sourcePath = Paths.get(review.getAbsolutePath()); Path targetPath = Paths.get(subDir.getAbsolutePath(), review.getName()); Files.copy(sourcePath, targetPath); count++; } } }
在此代码中:
以上是如何用Java将目录中的前20个文件复制到子目录中?的详细内容。更多信息请关注PHP中文网其他相关文章!