java 如何把一个目录下的所有.java文件复制到另一个目录下,并保持其结构不变
展开全部
通过历遍当前文件夹下所有文件和文件夹信息,然后(处理文件夹自己去处理):
File fold = new File( "c:\\test.properties ");
String strNewPath = "c:\\testok\\ ";
File fnewpath = new File(strNewPath);
if(!fnewpath.exists())
fnewpath.mkdirs();
File fnew = new File(strNewPath+fold.getName());
fold.renameTo(fnew);
File fold = new File( "c:\\test.properties ");
String strNewPath = "c:\\testok\\ ";
File fnewpath = new File(strNewPath);
if(!fnewpath.exists())
fnewpath.mkdirs();
File fnew = new File(strNewPath+fold.getName());
fold.renameTo(fnew);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询