public String extension(File F)
{
String FileName = F.getName();
int LastIndex = FileName.lastIndexOf(DotSymbol);
if(LastIndex > 0 && LastIndex <FileName.length() -1)
{
return FileName.substring(LastIndex+1);
}else
{
return "";
I don't understand why I need to decrement 1 from the if statement and add a 1 to the substring.
You are finding the last position of the string that has a dot. If you find a dot then you will return the substring after the dot (this gets the file extension). You subtract one, because if the dot is the last character of the string you have no file extension. You add one, because you don't want to return the dot, you want to return what's after the dot (the file extension).