@Override
protected void processMkdir(String dir) throws IOException
{
if(mExplain == null) { // process only if not in "explain" mode
ContainerDescriptor dirDescriptor = mDfs.asContainer(dir);
dirDescriptor.create();
} else {
log.warn("'mkdir' statement is ignored while processing 'explain -script' or '-check'");
}
}