PlatformFile
147148149150151152153154
PlatformFile ef = getPlatformFile(dir); return ef != null ? ef.isFloppyDrive() : false; } public boolean isHiddenFile(final File f) { PlatformFile ef = getPlatformFile(f); return ef != null ? ef.isHidden() : false; }
153154155156157158159160
return ef != null ? ef.isHidden() : false; } public boolean isComputerNode(final File dir) { PlatformFile ef = getPlatformFile(dir); return ef != null ? ef.isComputerNode() : false; }
59606162636465
installCommand(new CmdPropList()); installCommand(new CmdAdd()); installCommand(new CmdDelete()); installCommand(new CmdDiff()); setFileSystem(new PlatformFile(rootFile)); }