{"id":15969892,"url":"https://github.com/nikosgram/qwalk","last_synced_at":"2025-04-04T14:44:28.220Z","repository":{"id":44665571,"uuid":"312303375","full_name":"nikosgram/qwalk","owner":"nikosgram","description":"Golang fastest directory walking method","archived":false,"fork":false,"pushed_at":"2022-07-12T17:18:23.000Z","size":46,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T00:39:33.469Z","etag":null,"topics":["directory","go","go-library","go-module","go-package","golang","golang-library","golang-module","golang-package","walk","walker"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/nikosgram/qwalk","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nikosgram.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2020-11-12T14:35:51.000Z","updated_at":"2022-11-29T17:18:23.000Z","dependencies_parsed_at":"2022-07-30T00:47:46.999Z","dependency_job_id":null,"html_url":"https://github.com/nikosgram/qwalk","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikosgram%2Fqwalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikosgram%2Fqwalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikosgram%2Fqwalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikosgram%2Fqwalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nikosgram","download_url":"https://codeload.github.com/nikosgram/qwalk/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247198430,"owners_count":20900079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["directory","go","go-library","go-module","go-package","golang","golang-library","golang-module","golang-package","walk","walker"],"created_at":"2024-10-07T19:42:15.439Z","updated_at":"2025-04-04T14:44:28.205Z","avatar_url":"https://github.com/nikosgram.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qwalk [![Go Reference](https://pkg.go.dev/badge/github.com/nikosgram/qwalk.svg)](https://pkg.go.dev/github.com/nikosgram/qwalk) [![Go](https://github.com/nikosgram/qwalk/actions/workflows/go.yml/badge.svg)](https://github.com/nikosgram/qwalk/actions/workflows/go.yml) [![CodeQL](https://github.com/nikosgram/qwalk/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/nikosgram/qwalk/actions/workflows/codeql-analysis.yml)\n\nGolang fastest directory walking method\n\nGot the idea of creating this library based on @feyrob's godirlist repo: https://github.com/feyrob/godirlist\n\n## Examples\n\nThere are a few examples in the qwalk_test.go and qwalk_bench_test.go files if you want to see a very simplified version of what you can do with qwalk.\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"runtime\"\n\t\n\t\"github.com/nikosgram/qwalk\"\n)\n\nfunc main() {\n\t// print all no-directory items\n\tqwalk.Walk(\n\t\t[]string{\".\"},\n\t\tfunc(info qwalk.ItemInfo) bool {\n\t\t\t// print only from no-dir items\n\t\t\tif !info.Info.IsDir() {\n\t\t\t\tfmt.Println(info.Path)\n\t\t\t}\n\n\t\t\t// allow dir-listing on all directories\n\t\t\treturn true\n\t\t},\n\t\truntime.NumCPU(),\n\t)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikosgram%2Fqwalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnikosgram%2Fqwalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikosgram%2Fqwalk/lists"}