Javaでディレクトリ間でファイルをコピーする


156

Javaを使用して、あるディレクトリから別のディレクトリ(サブディレクトリ)にファイルをコピーしたい。テキストファイルを含むディレクトリdirがあります。dirの最初の20個のファイルを反復処理し、繰り返しの直前に作成したdirディレクトリー内の別のディレクトリーにそれらをコピーしたいと思います。コードで、review(i番目のテキストファイルまたはレビューを表す)をにコピーしますtrainingDir。これどうやってするの?そのような機能がないようです(または私は見つけることができませんでした)。ありがとうございました。

boolean success = false;
File[] reviews = dir.listFiles();
String trainingDir = dir.getAbsolutePath() + "/trainingData";
File trDir = new File(trainingDir);
success = trDir.mkdir();
for(int i = 1; i <= 20; i++) {
    File review = reviews[i];

}

それで、ファイルでいっぱいのディレクトリがあり、これらのファイルだけをコピーしたいですか?入力側での再帰なし-たとえば、すべてをサブディレクトリからメインディレクトリにコピーしますか?
akarnokd 2009

はい、正確に。これらのファイルを別のディレクトリにコピーまたは移動するだけに興味があります(投稿ではコピーのみを要求しました)。
user42155 2009

3
未来からのアップデート。Java 7には、ファイルをコピーするFilesクラスの機能があります。ここではそれについて別のポストがあるstackoverflow.com/questions/16433915/...
KevinL

回答:


170

今のところ、これで問題が解決するはずです

File source = new File("H:\\work-temp\\file");
File dest = new File("H:\\work-temp\\file2");
try {
    FileUtils.copyDirectory(source, dest);
} catch (IOException e) {
    e.printStackTrace();
}

FileUtilsApache Commons-ioライブラリのクラス。バージョン1.2以降で使用できます。

すべてのユーティリティを自分で作成するのではなく、サードパーティのツールを使用することをお勧めします。時間やその他の貴重なリソースを節約できます。


FileUtilsが機能しませんでした。ソースは「E:\\ Users \\ users.usr」、デスティネーションは「D:\\ users.usr」とします。何が問題でしょうか?
JAVA

2
素敵な解決策、私にとっては、に変更FileUtils.copyDirectory(source,dest)するFileUtils.copyFile(source, dest)と機能します。これが存在しない場合はディレクトリを作成できます
yuqizhang

FileUtils.copyDirectoryは、サブディレクトリではなくディレクトリ内のファイルのみをコピーします。FileUtils.copyDirectoryStructureはすべてのファイルとサブディレクトリをコピーします
Homayoun Behzadian

41

(まだ)標準APIにはファイルコピーメソッドはありません。オプションは次のとおりです。

  • FileInputStream、FileOutputStream、およびバッファを使用して、バイトを一方から他方にコピーします-さらに良いことに、FileChannel.transferTo()を使用して、自分で書き込みます
  • ユーザーApache CommonsのFileUtils
  • Java 7 でNIO2を待つ

+1 for NIO2:私は最近、NIO2 / Java7を実験しています...そして新しいパスは非常によく設計されています
dfa

OK、Java 7でそれを行う方法は?NIO2リンクが壊れています。
ripper234 2009

5
@ ripper234:リンクを修正しました。Googleに「java nio2」と入力して新しいリンクを見つけたことに注意してください...
Michael Borgwardt

Apache Commonsリンクの場合、 "#copyDirectory(java.io.File、java.io.File)"にリンクするつもりだったと思います
kostmo

37

Java 7に、Javaでファイルをコピーする標準的な方法があります。

Files.copy。

O / SネイティブI / Oと統合して高性能を実現します。

JavaでファイルをコピーするためのA on Standardの簡潔な方法を参照してください使用法の完全な説明については。


6
これは、ディレクトリ全体をコピーする問題には対応していません。
チャーリー

はい、リンクをたどれば... Javaの「ファイル」はディレクトリまたはファイルを表すことができることを忘れないでください。これは単なる参照です。
gagarwa

「ファイルがディレクトリの場合、ターゲットの場所に空のディレクトリが作成されます(ディレクトリのエントリはコピーされません)」
yurez

27

以下のJava Tipsの例はかなり単純です。それ以来、ファイルシステムを操作する操作をGroovyに切り替えました。しかし、これが私が過去に使用したJavaヒントです。確実に実行できるようにするために必要な堅牢な例外処理がありません。

 public void copyDirectory(File sourceLocation , File targetLocation)
    throws IOException {

        if (sourceLocation.isDirectory()) {
            if (!targetLocation.exists()) {
                targetLocation.mkdir();
            }

            String[] children = sourceLocation.list();
            for (int i=0; i<children.length; i++) {
                copyDirectory(new File(sourceLocation, children[i]),
                        new File(targetLocation, children[i]));
            }
        } else {

            InputStream in = new FileInputStream(sourceLocation);
            OutputStream out = new FileOutputStream(targetLocation);

            // Copy the bits from instream to outstream
            byte[] buf = new byte[1024];
            int len;
            while ((len = in.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
            in.close();
            out.close();
        }
    }

ありがとうございます。しかし、ディレクトリをコピーしたくありません。ディレクトリ内のファイルのみです。これで、エラーメッセージjava.io.FileNotFoundException:(trDirへのパス)(ディレクトリです)が表示されます。私はこのようなメソッドを使用しました:copyDirectory(review、trDir);
user42155 2009

よろしくsourceLocation.exists()java.io.FileNotFoundException
お願いいたします。

19

ファイルをコピーして移動しない場合は、次のようにコーディングできます。

private static void copyFile(File sourceFile, File destFile)
        throws IOException {
    if (!sourceFile.exists()) {
        return;
    }
    if (!destFile.exists()) {
        destFile.createNewFile();
    }
    FileChannel source = null;
    FileChannel destination = null;
    source = new FileInputStream(sourceFile).getChannel();
    destination = new FileOutputStream(destFile).getChannel();
    if (destination != null && source != null) {
        destination.transferFrom(source, 0, source.size());
    }
    if (source != null) {
        source.close();
    }
    if (destination != null) {
        destination.close();
    }

}

こんにちは、私はこれを試しましたが、エラーメッセージが表示されます。java.io.FileNotFoundException:... trDirへのパス...(ディレクトリです)ファイルとフォルダのすべてに問題がないようです。あなたはそれが何がうまくいかないのか知っていますか、そしてなぜ私はこれを得るのですか?
user42155 2009

しかし、transferFromが64MBを超えるストリームを1つにコピーできないというWindowsのバグはありませんか?bugs.sun.com/bugdatabase/view_bug.do?bug_id=4938442 fix rgagnon.com/javadetails/java-0064.html
akarnokd 2009

私はUbuntu 8.10を使用しているので、これは問題にはなりません。
user42155 2009

コードが別のプラットフォームで実行されないことが確かな場合。
akarnokd 2009

@gemm destfileは、ファイルのコピー先の正確なパスでなければなりません。つまり、ファイルのコピー先のディレクトリだけでなく、新しいファイル名も含めます。
Janusz

18

Spring Frameworkには、Apache Commons Langなどの類似のutilクラスが多数あります。だからorg.springframework.util.FileSystemUtils

File src = new File("/home/user/src");
File dest = new File("/home/user/dest");
FileSystemUtils.copyRecursively(src, dest);

15

Apache Commons Fileutilsは便利です。以下のアクティビティを実行できます。

  1. あるディレクトリから別のディレクトリにファイルをコピーしています。

    使用する copyFileToDirectory(File srcFile, File destDir)

  2. あるディレクトリから別のディレクトリにディレクトリをコピーしています。

    使用する copyDirectory(File srcDir, File destDir)

  3. あるファイルの内容を別のファイルにコピーする

    使用する static void copyFile(File srcFile, File destFile)


9
File sourceFile = new File("C:\\Users\\Demo\\Downloads\\employee\\"+img);
File destinationFile = new File("\\images\\" + sourceFile.getName());

FileInputStream fileInputStream = new FileInputStream(sourceFile);
FileOutputStream fileOutputStream = new FileOutputStream(
                destinationFile);

int bufferSize;
byte[] bufffer = new byte[512];
while ((bufferSize = fileInputStream.read(bufffer)) > 0) {
    fileOutputStream.write(bufffer, 0, bufferSize);
}
fileInputStream.close();
fileOutputStream.close();

1
クリーンでシンプルな答え-追加の依存関係はありません。
クロッカー、2015年

最初の2行を説明してください。
AVA


8

Apache commons FileUtilsは便利です。ディレクトリ全体をコピーするのではなく、ソースからターゲットディレクトリにファイル移動するだけの場合は、次のようにします。

for (File srcFile: srcDir.listFiles()) {
    if (srcFile.isDirectory()) {
        FileUtils.copyDirectoryToDirectory(srcFile, dstDir);
    } else {
        FileUtils.copyFileToDirectory(srcFile, dstDir);
    }
}

ディレクトリをスキップしたい場合は、次のようにします。

for (File srcFile: srcDir.listFiles()) {
    if (!srcFile.isDirectory()) {
        FileUtils.copyFileToDirectory(srcFile, dstDir);
    }
}

2
copyFileToDirectoryはファイルを「移動」しません
aleb

7

あなたは簡単な解決策を探しているようです(良いことです)。Apache CommonのFileUtils.copyDirectoryを使用することをお勧めします

ディレクトリ全体をファイルの日付を保持したまま新しい場所にコピーします。

このメソッドは、指定されたディレクトリとそのすべての子ディレクトリおよびファイルを指定された宛先にコピーします。宛先は、ディレクトリの新しい場所と名前です。

宛先ディレクトリーが存在しない場合は作成されます。宛先ディレクトリが存在した場合、このメソッドはソースを宛先にマージし、ソースを優先します。

あなたのコードはこのように素晴らしくて単純なものにすることができます:

File trgDir = new File("/tmp/myTarget/");
File srcDir = new File("/tmp/mySource/");

FileUtils.copyDirectory(srcDir, trgDir);

こんにちは、ディレクトリをコピーしたくありません。その中のファイルのみです。
user42155 2009

基本的に同じですよね?ソースディレクトリのすべてのファイルは、ターゲットディレクトリに格納されます。
Stu Thompson、

1
これは、ファイルを読み取ってから書き込むよりもはるかに優れた方法です。+1
Optimus Prime

6

このスレッドでのMohitの回答に触発されました。Java 8にのみ適用されます。

以下を使用して、あるフォルダから別のフォルダにすべてを再帰的にコピーできます。

public static void main(String[] args) throws IOException {
    Path source = Paths.get("/path/to/source/dir");
    Path destination = Paths.get("/path/to/dest/dir");

    List<Path> sources = Files.walk(source).collect(toList());
    List<Path> destinations = sources.stream()
            .map(source::relativize)
            .map(destination::resolve)
            .collect(toList());

    for (int i = 0; i < sources.size(); i++) {
        Files.copy(sources.get(i), destinations.get(i));
    }
}

ストリームスタイルのFTW。

アップデート2019-06-10:重要な注意-Files.walkコールで取得したストリームを閉じます(例:try-with-resourceを使用)。要点は@jannisに感謝します。


驚くばかり!!何百万ものファイルがあるディレクトリをコピーしたい場合は、並列ストリームを使用します。ファイルのコピーの進行状況を簡単に表示できますが、JAVA 7 nio copyDirectoryコマンドでは、大きなディレクトリでユーザーの進行状況を表示できませんでした。
Aqeel Haider

1
私はによって返されたストリームクローズ示唆Files.walk(source)に助言としてドキュメントまたはあなたがトラブルに巻き込まれるかもしれないが
jannis

4

以下は、ソースの場所から宛先の場所にファイルをコピーするブライアンの修正されたコードです。

public class CopyFiles {
 public static void copyFiles(File sourceLocation , File targetLocation)
    throws IOException {

        if (sourceLocation.isDirectory()) {
            if (!targetLocation.exists()) {
                targetLocation.mkdir();
            }
            File[] files = sourceLocation.listFiles();
            for(File file:files){
                InputStream in = new FileInputStream(file);
                OutputStream out = new FileOutputStream(targetLocation+"/"+file.getName());

                // Copy the bits from input stream to output stream
                byte[] buf = new byte[1024];
                int len;
                while ((len = in.read(buf)) > 0) {
                    out.write(buf, 0, len);
                }
                in.close();
                out.close();
            }            
        }
    }

4

Java 8

Path sourcepath = Paths.get("C:\\data\\temp\\mydir");
        Path destinationepath = Paths.get("C:\\data\\temp\\destinationDir");        
        Files.walk(sourcepath)
             .forEach(source -> copy(source, destinationepath.resolve(sourcepath.relativize(source)))); 

コピー方法

static void copy(Path source, Path dest) {
        try {
            Files.copy(source, dest, StandardCopyOption.REPLACE_EXISTING);
        } catch (Exception e) {
            throw new RuntimeException(e.getMessage(), e);
        }
    }

3

ソースファイルを新しいファイルにコピーして、元のファイルを削除することで回避できます。

public class MoveFileExample {

 public static void main(String[] args) {   

    InputStream inStream = null;
    OutputStream outStream = null;

    try {

        File afile = new File("C:\\folderA\\Afile.txt");
        File bfile = new File("C:\\folderB\\Afile.txt");

        inStream = new FileInputStream(afile);
        outStream = new FileOutputStream(bfile);

        byte[] buffer = new byte[1024];

        int length;
        //copy the file content in bytes 
        while ((length = inStream.read(buffer)) > 0) {
            outStream.write(buffer, 0, length);
        }

        inStream.close();
        outStream.close();

        //delete the original file
        afile.delete();

        System.out.println("File is copied successful!");

    } catch(IOException e) {
        e.printStackTrace();
    }
 }
}

2

使用する

org.apache.commons.io.FileUtils

とても便利です


4
ライブラリを提案する回答を投稿する場合は、単に名前を述べるのではなく、実際にそれを使用する方法を説明するとよいでしょう。
ポップス

2
File dir = new File("D:\\mital\\filestore");
File[] files = dir.listFiles(new File_Filter("*"+ strLine + "*.txt"));
for (File file : files){    
    System.out.println(file.getName());

    try {
        String sourceFile=dir+"\\"+file.getName();
        String destinationFile="D:\\mital\\storefile\\"+file.getName();
        FileInputStream fileInputStream = new FileInputStream(sourceFile);
        FileOutputStream fileOutputStream = new FileOutputStream(
                        destinationFile);
        int bufferSize;
        byte[] bufffer = new byte[512];
        while ((bufferSize = fileInputStream.read(bufffer)) > 0) {
            fileOutputStream.write(bufffer, 0, bufferSize);
        }
        fileInputStream.close();
        fileOutputStream.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}


1

次のコードを使用して、アップロードさCommonMultipartFileれたフォルダーを転送し、そのファイルをwebapps(つまり)webプロジェクトフォルダー内の宛先フォルダーにコピーします。

    String resourcepath = "C:/resources/images/" + commonsMultipartFile.getOriginalFilename();

    File file = new File(resourcepath);
    commonsMultipartFile.transferTo(file);

    //Copy File to a Destination folder
    File destinationDir = new File("C:/Tomcat/webapps/myProject/resources/images/");
    FileUtils.copyFileToDirectory(file, destinationDir);

1

あるディレクトリから別のディレクトリにファイルをコピー...

FileChannel source=new FileInputStream(new File("source file path")).getChannel();
FileChannel desti=new FileOutputStream(new File("destination file path")).getChannel();
desti.transferFrom(source, 0, source.size());
source.close();
desti.close();

1

これは、あるフォルダーから別のフォルダーにデータをコピーするための単純なJavaコードです。ソースと宛先の入力を指定する必要があります。

import java.io.*;

public class CopyData {
static String source;
static String des;

static void dr(File fl,boolean first) throws IOException
{
    if(fl.isDirectory())
    {
        createDir(fl.getPath(),first);
        File flist[]=fl.listFiles();
        for(int i=0;i<flist.length;i++)
        {

            if(flist[i].isDirectory())
            {
                dr(flist[i],false);
            }

            else
            {

                copyData(flist[i].getPath());
            }
        }
    }

    else
    {
        copyData(fl.getPath());
    }
}

private static void copyData(String name) throws IOException {

        int i;
        String str=des;
        for(i=source.length();i<name.length();i++)
        {
            str=str+name.charAt(i);
        }
        System.out.println(str);
        FileInputStream fis=new FileInputStream(name);
        FileOutputStream fos=new FileOutputStream(str);
        byte[] buffer = new byte[1024];
        int noOfBytes = 0;
         while ((noOfBytes = fis.read(buffer)) != -1) {
             fos.write(buffer, 0, noOfBytes);
         }


}

private static void createDir(String name, boolean first) {

    int i;

    if(first==true)
    {
        for(i=name.length()-1;i>0;i--)
        {
            if(name.charAt(i)==92)
            {
                break;
            }
        }

        for(;i<name.length();i++)
        {
            des=des+name.charAt(i);
        }
    }
    else
    {
        String str=des;
        for(i=source.length();i<name.length();i++)
        {
            str=str+name.charAt(i);
        }
        (new File(str)).mkdirs();
    }

}

public static void main(String args[]) throws IOException
{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("program to copy data from source to destination \n");
    System.out.print("enter source path : ");
    source=br.readLine();
    System.out.print("enter destination path : ");
    des=br.readLine();
    long startTime = System.currentTimeMillis();
    dr(new File(source),true);
    long endTime   = System.currentTimeMillis();
    long time=endTime-startTime;
    System.out.println("\n\n Time taken = "+time+" mili sec");
}

}

これはあなたが望むもののための実用的なコードです。それが役に立ったかどうか私に知らせてください


copyDataでFileInputStreamおよびFileOutputStreamを閉じるのを忘れました。
everblack 2017

0

次のコードを使用して、あるディレクトリから別のディレクトリにファイルをコピーできます。

// parent folders of dest must exist before calling this function
public static void copyTo( File src, File dest ) throws IOException {
     // recursively copy all the files of src folder if src is a directory
     if( src.isDirectory() ) {
         // creating parent folders where source files is to be copied
         dest.mkdirs();
         for( File sourceChild : src.listFiles() ) {
             File destChild = new File( dest, sourceChild.getName() );
             copyTo( sourceChild, destChild );
         }
     } 
     // copy the source file
     else {
         InputStream in = new FileInputStream( src );
         OutputStream out = new FileOutputStream( dest );
         writeThrough( in, out );
         in.close();
         out.close();
     }
 }

0
    File file = fileChooser.getSelectedFile();
    String selected = fc.getSelectedFile().getAbsolutePath();
     File srcDir = new File(selected);
     FileInputStream fii;
     FileOutputStream fio;
    try {
         fii = new FileInputStream(srcDir);
         fio = new FileOutputStream("C:\\LOvE.txt");
         byte [] b=new byte[1024];
         int i=0;
        try {
            while ((fii.read(b)) > 0)
            {

              System.out.println(b);
              fio.write(b);
            }
            fii.close();
            fio.close();

なにfileChooser
Dinoop paloli 2013

0

あるディレクトリから別のディレクトリにファイルをコピーする次のコード

File destFile = new File(targetDir.getAbsolutePath() + File.separator
    + file.getName());
try {
  showMessage("Copying " + file.getName());
  in = new BufferedInputStream(new FileInputStream(file));
  out = new BufferedOutputStream(new FileOutputStream(destFile));
  int n;
  while ((n = in.read()) != -1) {
    out.write(n);
  }
  showMessage("Copied " + file.getName());
} catch (Exception e) {
  showMessage("Cannot copy file " + file.getAbsolutePath());
} finally {
  if (in != null)
    try {
      in.close();
    } catch (Exception e) {
    }
  if (out != null)
    try {
      out.close();
    } catch (Exception e) {
    }
}

0
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class CopyFiles {
    private File targetFolder;
    private int noOfFiles;
    public void copyDirectory(File sourceLocation, String destLocation)
            throws IOException {
        targetFolder = new File(destLocation);
        if (sourceLocation.isDirectory()) {
            if (!targetFolder.exists()) {
                targetFolder.mkdir();
            }

            String[] children = sourceLocation.list();
            for (int i = 0; i < children.length; i++) {
                copyDirectory(new File(sourceLocation, children[i]),
                        destLocation);

            }
        } else {

            InputStream in = new FileInputStream(sourceLocation);
            OutputStream out = new FileOutputStream(targetFolder + "\\"+ sourceLocation.getName(), true);
            System.out.println("Destination Path ::"+targetFolder + "\\"+ sourceLocation.getName());            
            // Copy the bits from instream to outstream
            byte[] buf = new byte[1024];
            int len;
            while ((len = in.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
            in.close();
            out.close();
            noOfFiles++;
        }
    }

    public static void main(String[] args) throws IOException {

        File srcFolder = new File("C:\\sourceLocation\\");
        String destFolder = new String("C:\\targetLocation\\");
        CopyFiles cf = new CopyFiles();
        cf.copyDirectory(srcFolder, destFolder);
        System.out.println("No Of Files got Retrieved from Source ::"+cf.noOfFiles);
        System.out.println("Successfully Retrieved");
    }
}

0

Java 7ではそれほど複雑ではなく、インポートも不要です。

このrenameTo( )メソッドはファイルの名前を変更します。

public boolean renameTo( File destination)

たとえばsrc.txt、現在の作業ディレクトリにあるファイルの名前をに変更するにはdst.txt、次のように記述します。

File src = new File(" src.txt"); File dst = new File(" dst.txt"); src.renameTo( dst); 

それでおしまい。

参照:

ハロルド、エリオット・ラスティ(2006-05-16)。Java I / O(p。391)。O'Reilly Media。キンドル版。


2
移動はコピーではありません。
Nathan Tuggy 2015

これでファイルが移動します。間違った答え !
smilyface

質問のコメントで指定されているように、移動はOPで機能します。
Mohit Kanwar、2016年

自分の問題に適合し、ファイルを移動するための最も簡単な答えであるため、賛成です。おかげで男
LevKaz 16

質問に関連する回答を
教え

0

次のコードを使用して、あるディレクトリから別のディレクトリにファイルをコピーできます。

public static void copyFile(File sourceFile, File destFile) throws IOException {
        InputStream in = null;
        OutputStream out = null;
        try {
            in = new FileInputStream(sourceFile);
            out = new FileOutputStream(destFile);
            byte[] buffer = new byte[1024];
            int length;
            while ((length = in.read(buffer)) > 0) {
                out.write(buffer, 0, length);
            }
        } catch(Exception e){
            e.printStackTrace();
        }
        finally {
            in.close();
            out.close();
        }
    }

0

それが誰かを助けるなら、私が書いた再帰関数に従ってください。sourcedirectory内のすべてのファイルをdestinationDirectoryにコピーします。

例:

rfunction("D:/MyDirectory", "D:/MyDirectoryNew", "D:/MyDirectory");

public static void rfunction(String sourcePath, String destinationPath, String currentPath) {
    File file = new File(currentPath);
    FileInputStream fi = null;
    FileOutputStream fo = null;

    if (file.isDirectory()) {
        String[] fileFolderNamesArray = file.list();
        File folderDes = new File(destinationPath);
        if (!folderDes.exists()) {
            folderDes.mkdirs();
        }

        for (String fileFolderName : fileFolderNamesArray) {
            rfunction(sourcePath, destinationPath + "/" + fileFolderName, currentPath + "/" + fileFolderName);
        }
    } else {
        try {
            File destinationFile = new File(destinationPath);

            fi = new FileInputStream(file);
            fo = new FileOutputStream(destinationPath);
            byte[] buffer = new byte[1024];
            int ind = 0;
            while ((ind = fi.read(buffer))>0) {
                fo.write(buffer, 0, ind);
            }
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        finally {
            if (null != fi) {
                try {
                    fi.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
            if (null != fo) {
                try {
                    fo.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
    }
}

0

外部ライブラリを使用せず、java.nioクラスの代わりにjava.ioを使用したい場合は、次の簡潔なメソッドを使用して、フォルダとそのすべてのコンテンツをコピーできます。

/**
 * Copies a folder and all its content to another folder. Do not include file separator at the end path of the folder destination.
 * @param folderToCopy The folder and it's content that will be copied
 * @param folderDestination The folder destination
 */
public static void copyFolder(File folderToCopy, File folderDestination) {
    if(!folderDestination.isDirectory() || !folderToCopy.isDirectory())
        throw new IllegalArgumentException("The folderToCopy and folderDestination must be directories");

    folderDestination.mkdirs();

    for(File fileToCopy : folderToCopy.listFiles()) {
        File copiedFile = new File(folderDestination + File.separator + fileToCopy.getName());

        try (FileInputStream fis = new FileInputStream(fileToCopy);
             FileOutputStream fos = new FileOutputStream(copiedFile)) {

            int read;
            byte[] buffer = new byte[512];

            while ((read = fis.read(buffer)) != -1) {
                fos.write(buffer, 0, read);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }


    }
}

0

私の知識による最善の方法は次のとおりです:

    public static void main(String[] args) {

    String sourceFolder = "E:\\Source";
    String targetFolder = "E:\\Target";
    File sFile = new File(sourceFolder);
    File[] sourceFiles = sFile.listFiles();
    for (File fSource : sourceFiles) {
        File fTarget = new File(new File(targetFolder), fSource.getName());
        copyFileUsingStream(fSource, fTarget);
        deleteFiles(fSource);
    }
}

    private static void deleteFiles(File fSource) {
        if(fSource.exists()) {
            try {
                FileUtils.forceDelete(fSource);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    private static void copyFileUsingStream(File source, File dest) {
        InputStream is = null;
        OutputStream os = null;
        try {
            is = new FileInputStream(source);
            os = new FileOutputStream(dest);
            byte[] buffer = new byte[1024];
            int length;
            while ((length = is.read(buffer)) > 0) {
                os.write(buffer, 0, length);
            }
        } catch (Exception ex) {
            System.out.println("Unable to copy file:" + ex.getMessage());
        } finally {
            try {
                is.close();
                os.close();
            } catch (Exception ex) {
            }
        }
    }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.