All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.perigee.commonsvfs.truezip.zip.ZipFileSystem Maven / Gradle / Ivy

package fr.perigee.commonsvfs.truezip.zip;

import java.util.Collection;

import org.apache.commons.vfs2.Capability;
import org.apache.commons.vfs2.FileName;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSystem;
import org.apache.commons.vfs2.FileSystemOptions;
import org.apache.commons.vfs2.provider.AbstractFileName;
import org.apache.commons.vfs2.provider.AbstractFileSystem;


public class ZipFileSystem extends AbstractFileSystem implements FileSystem {


	protected ZipFileSystem(FileName rootName, FileObject parent, FileSystemOptions fileSystemOptions) {
		super(rootName, parent, fileSystemOptions);
	}

	@Override
	protected FileObject createFile(AbstractFileName name) throws Exception {
		return new ZipFileObject(name, getParentLayer(), this);
	}

    /**
     * Adds the capabilities of this file system.
     */
    @Override
    protected void addCapabilities(final Collection caps)
    {
        caps.addAll(ZipFileProvider.capabilities);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy