摘要: 1、删除某个目录下的所有文件 /** * <p>Removes all files from specified directory.</p> * * @param path path to directory */ public static void removeFiles(String path) { File dir = new File(path); if (di... 阅读全文
posted @ 2010-07-18 20:50 明之道 阅读(316) 评论(0) 推荐(0) 编辑