boolean isValid(String path);
}
private static boolean allowTmpDirIO(String path) {
RythmConfiguration conf = RythmEngine.get().conf();
if (conf.sandboxTmpIO()) {
String tmp = System.getProperty("java.io.tmpdir");
if (path.startsWith(tmp)) {
return true;
} else if ((path + File.separator).startsWith(tmp)) {
return true;