props.addCommand(backToBCommand);
props.setCommandListener(this);
props.append(new StringItem(T._("Location"), currDirName));
props.append(new StringItem(T._("Type"), fc.isDirectory() ? T._("Directory") : T._("Regular File")));
props.append(new StringItem(T._("Size"), Long.toString((fc.isDirectory() ? fc.directorySize(true) : fc.fileSize()))));
props.append(new StringItem(T._("Modified"), myDate(fc.lastModified())));
ChoiceGroup attrs = new ChoiceGroup(T._("Attributes"), Choice.MULTIPLE, attrList, null);
attrs.setSelectedFlags(new boolean[] { fc.canRead(), fc.canWrite(), fc.isHidden() });
props.append(attrs);