public class MultiZipFilesystem extends StaticFilesystem
{
public MultiZipFilesystem(String args[], int offset) throws IOException
{
super(new DirectoryNode("$ROOT"));
DirectoryNode rootNode = getRootNode();
for (int i = offset; i < args.length; i++)
{
File zipFile = new File(args[i]);
rootNode.addChild(new MountpointNode(zipFile.getName(), new ZipFilesystem(zipFile)));
}
}