删除目录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除目录相关的知识,希望对你有一定的参考价值。
A "quick and dirty" way to delete a directory. For more cleaner implementation, see http://www.google.com/codesearch/p?hl=en#SS2by_AKaLs/src/org/apache/commons/io/FileUtils.java&q=cleanDirectory&l=972
if (dir.isDirectory()) { for (int i=0; i<children.length; i++) { if (!success) { return false; } } } // The directory is now empty so delete it return dir.delete(); }
以上是关于删除目录的主要内容,如果未能解决你的问题,请参考以下文章