if (item instanceof LocalImpl) {
LocalImpl localImpl = (LocalImpl) item;
return localImpl.getBasefile();
}
if (item instanceof OlatRelPathImpl) {
OlatRelPathImpl relPath = (OlatRelPathImpl) item;
return new File(getCanonicalRoot(), relPath.getRelPath());
}
return null;
}