摘要: public void copyFolder(String oldPath, String newPath) { try { (new File(newPath)).mkdirs(); // 如果文件夹不存在 则建立新文件夹 File fileTemp = new File(oldPath); St 阅读全文
posted @ 2018-04-24 19:44 清-华-园 阅读(240) 评论(0) 推荐(0) 编辑