用Java编写一个复制和粘贴文件夹的方法
说明:文件夹下可能为空,可能只包含文件或只包含子文件夹,可能即包含文件又包含子文件夹,子文件夹可能有多层,且子文件夹下也可能有文件或子文件夹。...
说明:文件夹下可能为空,可能只包含文件或只包含子文件夹,可能即包含文件又包含子文件夹,子文件夹可能有多层,且子文件夹下也可能有文件或子文件夹。
展开
2个回答
展开全部
public void copyFolder(String oldPath, String newPath) throws Exception
{
try
{
(new File(newPath)).mkdirs(); File a = new File(oldPath);
String[] file = a.list();
File temp = null;
for (int i = 0; i < file.length; i++)
{
if (oldPath.endsWith(File.separator))
{
temp = new File(oldPath + file[i]);
}
else
{
temp = new File(oldPath + File.separator + file[i]);
}
if (temp.isFile())
{
FileInputStream input = new FileInputStream(temp);
FileOutputStream output =
new FileOutputStream(newPath + File.pathSeparator + (temp.getName()).toString());
byte[] b = new byte[1024 * 5];
int len;
while ((len = input.read(b)) != -1)
{
output.write(b, 0, len);
}
output.flush();
output.close();
input.close();
}
if (temp.isDirectory())
{ //如果是子文件夹
copyFolder(oldPath + File.pathSeparator + file[i], newPath + File.pathSeparator + file[i]);
}
}
}
catch (Exception e)
{
throw(e);
}
}
{
try
{
(new File(newPath)).mkdirs(); File a = new File(oldPath);
String[] file = a.list();
File temp = null;
for (int i = 0; i < file.length; i++)
{
if (oldPath.endsWith(File.separator))
{
temp = new File(oldPath + file[i]);
}
else
{
temp = new File(oldPath + File.separator + file[i]);
}
if (temp.isFile())
{
FileInputStream input = new FileInputStream(temp);
FileOutputStream output =
new FileOutputStream(newPath + File.pathSeparator + (temp.getName()).toString());
byte[] b = new byte[1024 * 5];
int len;
while ((len = input.read(b)) != -1)
{
output.write(b, 0, len);
}
output.flush();
output.close();
input.close();
}
if (temp.isDirectory())
{ //如果是子文件夹
copyFolder(oldPath + File.pathSeparator + file[i], newPath + File.pathSeparator + file[i]);
}
}
}
catch (Exception e)
{
throw(e);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询