{"id":37432590,"url":"https://github.com/azazar/vfs","last_synced_at":"2026-01-16T06:36:33.546Z","repository":{"id":37051943,"uuid":"160809134","full_name":"azazar/vfs","owner":"azazar","description":"Simple VFS for scanning through rar/zip/tar/gz compressed and/or packed files","archived":false,"fork":false,"pushed_at":"2025-12-17T10:20:16.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-20T11:20:52.315Z","etag":null,"topics":["gzip","java","rar","tar","vfs","zip"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azazar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-12-07T10:28:35.000Z","updated_at":"2025-12-17T10:20:20.000Z","dependencies_parsed_at":"2024-02-20T20:44:04.410Z","dependency_job_id":null,"html_url":"https://github.com/azazar/vfs","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/azazar/vfs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azazar%2Fvfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azazar%2Fvfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azazar%2Fvfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azazar%2Fvfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azazar","download_url":"https://codeload.github.com/azazar/vfs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azazar%2Fvfs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477884,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gzip","java","rar","tar","vfs","zip"],"created_at":"2026-01-16T06:36:33.476Z","updated_at":"2026-01-16T06:36:33.528Z","avatar_url":"https://github.com/azazar.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VFS\n\nVFS that allows accessing remote or enclosed files without need for replicating\ncontainers. It's original purpose was to allow recursive scanning of archives.\nBut now it's a bit more than that.\n\n## Supported containers and compressors\n\nFormat|Extensions|Supported by\n-|-|-\nZip|.zip|Both\nTar|.tar/.tgz|VFS\nRar|.rar|Scanner\nGZip|.gz|VFS\nBZip2|.bz2|VFS\nZStd|.zst|VFS\n\n## Example\n\n```java\npublic class Example {\n\n    public static void readFromArchive() throws IOException {\n        // reading file named \"enclosed.txt\" from zip archive \"archive.zip\"\n        try (InputStream i = new VfsFile(new File(\"archive.zip\"), \"enclosed.txt\").open()) {\n            System.out.println(IOUtils.toString(i, StandardCharsets.UTF_8));\n        }\n    }\n    \n    public static void scan() throws IOException {\n        // print content of all files in zip archive \"archive\"\n        try(VfsScanner s = new VfsScanner(file -\u003e {\n            try {\n                System.out.println(file.getContentAsUTF8String());\n            }\n            catch (IOException ex) {\n                ex.printStackTrace();\n            }\n        })) {\n            s.scan(new File(\"archive.zip\"));\n        }\n    }\n    }\n    \n}\n```\n\n## Maven\n\n### Repository\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n### Artifact\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.azazar\u003c/groupId\u003e\n    \u003cartifactId\u003evfs\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.13\u003c/version\u003e\n\u003c/dependency\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazazar%2Fvfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazazar%2Fvfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazazar%2Fvfs/lists"}