/**
* @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);
}