/**
* License
* THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
* CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE").
* THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW.
* ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR
* COPYRIGHT LAW IS PROHIBITED.
*
* BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND
* AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE
* MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED
* HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
*
*/
package l1j.server.server.utils;
import java.io.File;
public class FileUtil {
public static String getExtension(File file) {
String fileName = file.getName();
int index = fileName.lastIndexOf('.');
if (index != -1) {
return fileName.substring(index + 1, fileName.length());
}
return "";
}
public static String getNameWithoutExtension(File file) {
String fileName = file.getName();
int index = fileName.lastIndexOf('.');
if (index != -1) {
return fileName.substring(0, index);
}
return "";
}
}
|