http://www.uttingsoutdoors.co.uk/ £279
ThermaRestOriginal £67 or Traillight £30
Headlamp
One with red leds for efficient night time Navigation
Camera gear
Canon EF 24mm f1.4L USM II
Review, Review, Buy
Canon EF 70-200 f4L IS USMReview, Review, Buy


Windows, Linux, Mac OS X, Java and Ruby Tips and Tricks
ThermaRest
Canon EF 70-200 f4L IS USM

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();
}
}