创建多层目录
摘要://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
浙公网安备 33010602011771号