List createBrowser() {
List browser = new List(currDirName, Choice.IMPLICIT);
browser.setSelectCommand(selectCommand);
if (customCommand != null)
browser.addCommand(customCommand);
// Do not allow creating files/directories beside root
if (!MEGA_ROOT.equals(currDirName)) {
if (allowNew)
browser.addCommand(newCommand);
browser.addCommand(propCommand);