Added resuffix().

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1189 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-08-09 05:26:32 +00:00
parent 4bc1974eed
commit 32266d9607
@@ -1,5 +1,5 @@
//
// $Id: FileUtil.java,v 1.3 2003/05/27 07:58:08 mdb Exp $
// $Id: FileUtil.java,v 1.4 2003/08/09 05:26:32 mdb Exp $
package com.samskivert.util;
@@ -30,6 +30,20 @@ public class FileUtil
recursiveWipe(file, false);
}
/**
* Replaces <code>ext</code> with the supplied new extention if the
* supplied file path ends in <code>ext</code>. Otherwise the new
* extension is appended to the whole existing file path.
*/
public static String resuffix (File file, String ext, String newext)
{
String path = file.getPath();
if (path.endsWith(ext)) {
path = path.substring(0, path.length()-ext.length());
}
return path + newext;
}
/** Helper function. */
protected static void recursiveWipe (File file, boolean wipeMe)
{