Whoopskidoodle! We'll be wanting to blow away the top-level directory in

recursiveDelete().


git-svn-id: https://samskivert.googlecode.com/svn/trunk@1140 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-05-27 07:58:08 +00:00
parent 5d22681233
commit 7b21303b0f
@@ -1,5 +1,5 @@
//
// $Id: FileUtil.java,v 1.2 2003/05/23 18:13:36 mdb Exp $
// $Id: FileUtil.java,v 1.3 2003/05/27 07:58:08 mdb Exp $
package com.samskivert.util;
@@ -18,7 +18,7 @@ public class FileUtil
*/
public static void recursiveDelete (File file)
{
recursiveWipe(file, false);
recursiveWipe(file, true);
}
/**