Select/Highlight text then select Format -> Change Case

Select from these 5 options. Sentences case is useful if you accidentally typed everything upper case

Windows, Linux, Mac OS X, Java and Ruby Tips and Tricks
public static void recDelete(File folder) {
if(folder.exists()) {
if(folder.isDirectory()) {
File[] files = folder.listFiles();
for(int i=0; i < files.length; i++) {
File curFile = files[i];
// call to delete the current file/folder
recDelete(curFile);
}
}
//If a folder Deleted all contents
//If a File Jump straight here
folder.delete();
}
}