552553554555556557558559560561562
if (fs == null) return EMPTY_STRING_ARRAY; if ((fs.capabilities() & FSCapability.LS_DIR) == 0) return EMPTY_STRING_ARRAY; try{ return fs.list(path); } catch (IOException ioe) { return EMPTY_STRING_ARRAY; } }