38394041424344454647
} public static VFSRoot getRoot(URL url) throws URISyntaxException, IOException { File file = new File(url.toURI()); if (file.isDirectory()) { return new FileVFSRoot(file); } else { return new ZipVFSRoot(file); } }