v.add(s);
String name = thefile.getName();
v.add(name);
v.add(fileTest.getExt(thefile));
if (fileTest.isTestable(thefile)){
Stats mystats = fileTest.getStats(thefile);
long size = thefile.length();
v.add(new Long(size));
v.add(new Date(thefile.lastModified()));
Object o = null;
if (mystats!=null){
try {
o = mystats.compute(thefile, fileTest);
} catch (Exception e) {
e.printStackTrace();
}
}
v.add((o == null) ? "" : o);