本帖最后由 在学野马 于 2014-10-5 07:38 编辑
- public static void copyFiles(File from,File to) throws Exception{
- if(from.isDirectory()){
- FileInputStream fis= null;
- FileOutputStream fos =null;
- File[] files = from.listFiles();
- for(File file:files){
- String filename = to+"\\"+file.getName();
- fis = new FileInputStream(file);
- fos = new FileOutputStream(filename);
- byte[] buf = new byte[1024];
- int len = 0;
- while((len=fis.read(buf))!=-1){
- fos.write(buf, 0, len);
- }
- fos.close();
- fis.close();
- }
- }
复制代码 这里怎么修改 可以复制文件夹下的文件夹
|
|