}
}
protected void processCD(String path) throws IOException
{
ContainerDescriptor container;
try {
if (path == null) {
container = mDfs.asContainer("/user/" + System.getProperty("user.name"));
mDfs.setActiveContainer(container);
}
else
{
container = mDfs.asContainer(path);
if (!container.exists()) {
StringBuilder sb = new StringBuilder();
sb.append("Directory ");
sb.append(path);
sb.append(" does not exist.");
throw new IOException(sb.toString());