复制文件夹及其文件到另一个位置

3
我想将F:\test复制到文件夹F:\123,以便我有文件夹F:\123\test。
在test文件夹中,我有两个文件:input和output.java,但我无法完成操作,出现错误:F\123\test\output.java(系统找不到指定的路径) 以下是我的代码:
    Constant.fromPath = "F:\\test"
    Constant.toPath = "F\\123\\test";
    File source = new File(Constant.fromPath);
    File destination = new File(Constant.toPath);

    try
    {
        copyFolder(source, destination);

    }
    catch(Exception ex)
    {
        System.out.println(ex.getMessage());
    }

这里是copyFolder函数

 public static void copyFolder(File srcFolder, File destFolder) throws IOException
{
    if (srcFolder.isDirectory())
    {
        if (! destFolder.exists())
        {
            destFolder.mkdir();
        }

        String[] oChildren = srcFolder.list();
        for (int i=0; i < oChildren.length; i++)
        {
            copyFolder(new File(srcFolder, oChildren[i]), new File(destFolder, oChildren[i]));
        }
    }
    else
    {
        if(destFolder.isDirectory())
        {
            copyFile(srcFolder, new File(destFolder, srcFolder.getName()));
        }
        else
        {
            copyFile(srcFolder, destFolder);
        }
    }
}

public static void copyFile(File srcFile, File destFile) throws IOException
{
        InputStream oInStream = new FileInputStream(srcFile);
        OutputStream oOutStream = new FileOutputStream(destFile);

        // Transfer bytes from in to out
        byte[] oBytes = new byte[1024];
        int nLength;
        BufferedInputStream oBuffInputStream = new BufferedInputStream( oInStream );
        while ((nLength = oBuffInputStream.read(oBytes)) > 0)
        {
            oOutStream.write(oBytes, 0, nLength);
        }
        oInStream.close();
        oOutStream.close();
}

请帮助我修复我的错误。

2个回答

3

Constant.toPath = "F\\123\\test"; 应该改为 Constant.toPath = "F:\\123\\test";


抱歉,我已经编辑了我的问题。 在我的程序中,我从jLablel获取它,但为了简单起见,我手动输入了它,这就是为什么我错过了冒号字符的原因。 - Chan Pye

2

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接