Package ru.aristar.jnuget.files.nio

Examples of ru.aristar.jnuget.files.nio.NupkgFileSystem


    /**
     * @param nupkg пакет NuGet
     * @throws IOException ошибка чтения пакета
     */
    public NupkgContentTree(Nupkg nupkg) throws IOException {
        fileSystem = new NupkgFileSystem(nupkg);
        Path root = fileSystem.getRootDirectories().iterator().next();
        rootNode = new Node(root);
    }
View Full Code Here

TOP

Related Classes of ru.aristar.jnuget.files.nio.NupkgFileSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.