2013年5月14日

创建多层目录

摘要: //c:/aaa/bbb/ccc//生成多层目录public static void mkdir(String path) { File file = null; try { file= new File(path); if (!file.exists()) { file.mkdirs(); } } catch (Exception e) { e.printStackTrace(); } finally { ... 阅读全文

posted @ 2013-05-14 09:43 过-路-人 阅读(166) 评论(0) 推荐(0)

导航