溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java使用遞歸復(fù)制文件夾的方法

發(fā)布時(shí)間:2020-07-27 11:49:55 來(lái)源:億速云 閱讀:188 作者:小豬 欄目:編程語(yǔ)言

這篇文章主要講解了Java使用遞歸復(fù)制文件夾的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

遞歸調(diào)用copyDir方法實(shí)現(xiàn),查詢?cè)次募夸浭褂米止?jié)輸入流寫(xiě)入字節(jié)數(shù)組,如果目標(biāo)文件目錄沒(méi)有就創(chuàng)建目錄,如果迭代出是文件夾使用字節(jié)輸出流對(duì)拷文件,直至源文件目錄沒(méi)有內(nèi)容。

/**
   * 復(fù)制文件夾
   * @param srcDir 源文件目錄
   * @param destDir 目標(biāo)文件目錄
   */
  public static void copyDir(String srcDir, String destDir) {
    if (srcRoot == null) srcRoot = srcDir;
    //源文件夾
    File srcFile = new File(srcDir);
    //目標(biāo)文件夾
    File destFile = new File(destDir);
    //判斷srcFile有效性
    if (srcFile == null || !srcFile.exists())
      return;
    //創(chuàng)建目標(biāo)文件夾
    if (!destFile.exists())
      destFile.mkdirs();
    //判斷是否是文件
    if (srcFile.isFile()) {
      //源文件的絕對(duì)路徑
      String absPath = srcFile.getAbsolutePath();
      //取出上級(jí)目錄
      String parentDir = new File(srcRoot).getParent();
      //拷貝文件
      copyFile(srcFile.getAbsolutePath(), destDir);

    } else {  //如果是目錄
      File[] children = srcFile.listFiles();
      if (children != null) {
        for (File f : children) {
          copyDir(f.getAbsolutePath(), destDir);
        }
      }
    }
  }
/**
   * 復(fù)制文件夾
   *
   * @param path  路徑
   * @param destDir 目錄
   */
  public static void copyFile(String path, String destDir) {

    FileInputStream fis = null;
    FileOutputStream fos = null;
    try {
       /*
        準(zhǔn)備目錄
        取出相對(duì)的路徑
        創(chuàng)建目標(biāo)文件所在的文件目錄
       */
      String tmp = path.substring(srcRoot.length());
      String folder = new File(destDir, tmp).getParentFile().getAbsolutePath();
      File destFolder = new File(folder);
      destFolder.mkdirs();
      System.out.println(folder);      //創(chuàng)建文件輸入流
      fis = new FileInputStream(path);
      //定義新路徑
      //創(chuàng)建文件 輸出流
      fos = new FileOutputStream(new File(destFolder,new File(path).getName()));
      //創(chuàng)建字節(jié)數(shù)組進(jìn)行流對(duì)拷
      byte[] buf = new byte[1024];
      int len = 0;
      while ((len = fis.read(buf)) != -1) {
        fos.write(buf, 0, len);
      }
    } catch (IOException ex) {
      ex.printStackTrace();
    } finally {
      try {
        fis.close();
        fos.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }

看完上述內(nèi)容,是不是對(duì)Java使用遞歸復(fù)制文件夾的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI