2017-09-21 26 views
0

ディレクトリ内のすべてのファイルを別のディレクトリにコピーしようとしていますが、フォルダをコピーしないようにしています。私はFiles.copyを使用しようとしているが、私はこのエラーを取得しています:すべてのファイルをディレクトリから別のディレクトリにコピー

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 Exercici1 { 

    public static void copiarArchivos(String pathSource,String pathOutcome, String sufix) throws IOException { 
    File origen = new File(pathSource); 
    String[] contenidoOrigen = origen.list(); 
    for(String string:contenidoOrigen){ 
     File interno = new File(origen,string); 
     if (interno.isDirectory()){ 
      copiarArchivos(interno.getPath(),pathOutcome,sufix); 
     } else { 
      Path targetOutcome = Paths.get(pathOutcome); 
      Path targetSource = Paths.get(interno.getPath()); 
      Files.copy(targetSource,targetOutcome); 
     } 
    } 




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

copiarArchivos("Vampiro_Mascarada","pruebaPDF",".pdf"); 
} 
} 

マイフォルダ構造は、このようなものです::

/out 
/pruebasPDF 
/src 
/Vampiro_Mascarada 
    /1.pdf 
    /2.pfdf 
    /Images 
     /1.png 
     /2.png 

答えて

1

Exception in thread "main" java.nio.file.FileAlreadyExistsException: 

ここに私の実際のコードですREPLACE_EXISTINGオプションでFiles.copy(source、dest、CopyOption)を使用する必要があります。

関連する問題