首頁 > Java > java教程 > 如何用Java將目錄中的前20個檔案複製到子目錄中?

如何用Java將目錄中的前20個檔案複製到子目錄中?

DDD
發布: 2024-11-12 10:00:03
原創
493 人瀏覽過

How to Copy the First 20 Files from a Directory to a Subdirectory in Java?

將檔案複製到目錄中的子目錄

在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++;
        }
    }
}
登入後複製

在此程式碼中:

  • 我們首先取得來源目錄並在其中建立子目錄。
  • 然後,我們使用 for 迴圈迭代目錄中的前 20 個檔案。
  • 對於每個文件,我們建立來源目錄的路徑和目標文件。
  • 最後,我們使用 Files.copy() 方法將檔案複製到子目錄。

以上是如何用Java將目錄中的前20個檔案複製到子目錄中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板