我已经搜索过这个答案,我试图解决这个问题,但我不能。我得到了类型
的异常No fue posible copiar los archivos. Motivo: C:\Test1 (Acceso denegado)java.io.FileNotFoundException: C:\Test1 (Acceso denegado)
java.io.FileNotFoundException: C:\Test1 (Acceso denegado)
翻译的内容类似于“无法复制文件。动机:(拒绝访问)”。
我要做的是以递归方式将List复制到目录中。
我可以简单地递归复制文件(我已经这样做了),但要求是将所有文件复制到List中,然后用列表中的记录做我想做的任何事情(复制,删除等)。
我的列表包含以下记录:
C:\Test\Carpeta_A
C:\Test\Carpeta_A\Entrenamiento_1.txt
C:\Test\Carpeta_A\Requerimientos.txt
C:\Test\Carpeta_B
C:\Test\Carpeta_B\queries.txt
C:\Test\Things.txt
这是我的代码:
这是主要方法..它调用列出并保存文件和目录的方法,然后调用将文件复制到保留我的主要结构的另一个目录的方法:
public static void main(String[] args) throws IOException
{
String fuente = "C:/Test";
String ruta = "C:/Test1";
teeeeeest listing = new teeeeeest();
List<File> files = listing.getFileListing(fuente);
listing.copyDirectories(files, ruta);
}
public List<File> getFileListing( String fuente ) throws FileNotFoundException
{
List<File> result = getFileListingNoSort(fuente);
Collections.sort(result);
return result;
}
private List<File> getFileListingNoSort( String fuente ) throws FileNotFoundException
{
File source = new File(fuente);
List<File> result = new ArrayList<>();
File[] filesAndDirs = source.listFiles();
List<File> filesDirs = Arrays.asList(filesAndDirs);
for(File file : filesDirs) {
result.add(file); //always add, even if directory
String s = file.getPath().trim();
if (! file.isFile()) {
//must be a directory
//recursive call!
List<File> deeperList = getFileListingNoSort(s);
result.addAll(deeperList);
}
}
return result;
}
public static void copyDirectories(List<File> files, String destiny)
throws IOException
{
InputStream in = null;
OutputStream out = null;
File targetPath = new File(destiny);
System.out.println(targetPath.getPath());
for(int i = 0; i < files.size(); i++)
{
File temp = new File(files.get(i).toString());
//System.out.println(temp.getPath());
try
{
if(temp.isDirectory())
{
if(!targetPath.exists())
{
targetPath.mkdir();
}
File[] filesAndDirs = temp.listFiles();
List<File> filesDirs = Arrays.asList(filesAndDirs);
for(File file : filesDirs)
{
if (! file.isFile())
{
//must be a directory
//recursive call!
copyDirectories(filesDirs,destiny);
}
}
}
else
{
in = new FileInputStream(files.get(i).toString());
out = new FileOutputStream(targetPath);
System.out.println(temp.getPath());
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0)
{
out.write(buf, 0, len);
}
}
}
catch(Exception e)
{
System.err.println("No fue posible copiar los archivos. Motivo: " + e.getMessage() + e);
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
在这里粘贴工作代码对我来说非常糟糕,它不会帮助你思考问题是什么。我会尽力给你足够的东西而不给予你一切:如果对你有所帮助,请将我的答案标记为已接受。
1:您不应该对文件列表进行排序。读入文件的顺序非常重要,这样您就不会在列表中的目录之前获取文件。也就是说,如果你对它们进行排序并不重要,因为较短的名称,即目录,无论如何都会首先出现。不过,不要做你不应该做的工作。删除getFileListing方法并仅使用getFileListingNoSort。
List<File> files = listing.getFileListingNoSort(fuente);
2:您需要将源目录和目标目录都传递给copyDirectories,以便您可以从源文件名创建目标文件名。
listing.copyDirectories(files, fuente, ruta);
3:您需要从源文件名中创建目标文件。可能有更好的方法,但使用简单的String解析可以解决这个问题:
File temp = files.get(i);
String destFileName = destiny + temp.toString().substring(source.length());
File destFile = new File(destFileName);
4:您必须根据新的destFile创建新目录。您正在使用targetPath,它只是基本目录,而不是需要创建的新目录。
if(!destFile.exists())
{
destFile.mkdir();
}
5:创建目标目录后,没有其他任何事情可做。之后删除所有代码,直到'else'
6:你的outfile应该是你创建的新destFile。
out = new FileOutputStream(destFile);
7:关闭输入和输出流,否则文件副本将无法完成。
in.close();
out.close();
这应该让你去。如果可以,请使用IDE,以便您可以使用调试器逐步完成该程序并查看正在发生的事情。
答案 1 :(得分:0)
在copyDirectories方法中,即使在递归调用中,命运始终也是相同的值。您正在将所有文件复制到同一目标文件。