zhyiwww
          用平實的筆,記錄編程路上的點點滴滴………
          posts - 536,comments - 394,trackbacks - 0

          ??? // Copies all files under srcDir to dstDir.
          ??? // If dstDir does not exist, it will be created.
          ??? public void copyDirectory(File srcDir, File dstDir) throws IOException {
          ??????? if (srcDir.isDirectory()) {
          ??????????? if (!dstDir.exists()) {
          ??????????????? dstDir.mkdir();
          ??????????? }
          ???
          ??????????? String[] children = srcDir.list();
          ??????????? for (int i=0; i<children.length; i++) {
          ??????????????? copyDirectory(new File(srcDir, children[i]),
          ???????????????????????????????????? new File(dstDir, children[i]));
          ??????????? }
          ??????? } else {
          ??????????? // This method is implemented in
          e1071 Copying a File
          ??????????? copyFile(srcDir, dstDir);
          ??????? }
          ??? }



          |----------------------------------------------------------------------------------------|
                                     版權聲明  版權所有 @zhyiwww
                      引用請注明來源 http://www.aygfsteel.com/zhyiwww   
          |----------------------------------------------------------------------------------------|
          posted on 2006-06-13 11:37 zhyiwww 閱讀(270) 評論(0)  編輯  收藏 所屬分類: code demo -java
          主站蜘蛛池模板: 巢湖市| 天长市| 江北区| 宜川县| 大姚县| 丰都县| 双桥区| 新巴尔虎右旗| 夏河县| 宁安市| 平果县| 灵武市| 朝阳县| 阜南县| 舟山市| 宜都市| 蒲江县| 获嘉县| 绍兴市| 尉氏县| 安图县| 卢龙县| 怀来县| 民丰县| 枣阳市| 中阳县| 蒙山县| 焦作市| 城步| 开江县| 砀山县| 西乌| 郯城县| 新乐市| 如皋市| 高密市| 仪陇县| 清远市| 台北县| 九龙城区| 庐江县|