public boolean mkdirs(String dirs) throws IOException {
// Check if this operation is permitted
filter.validate(PigCommandFilter.Command.MKDIR);
ContainerDescriptor container = pigContext.getDfs().asContainer(dirs);
container.create();
return true;
}
/**
* List the contents of a directory.