reset method

void reset()

Empty/reset all of the directories synchronously

This internally calls delete then create to achieve the same effect.

Implementation

void reset() {
  delete();
  create();
}