p = System.getProperties();
String fsname = p.getProperty("memfs.name", "");
if("".equals(fsname)) throw new RuntimeException("memfs.name property not specified - it is used to specify a required VFS name");
VFSStore store = new MemVFSStore(meta, fsname);
return store;
}