{"id":22076022,"url":"https://github.com/mantono/fwalker","last_synced_at":"2025-08-16T16:41:55.472Z","repository":{"id":53567001,"uuid":"247820786","full_name":"mantono/fwalker","owner":"mantono","description":"File walker library crate for Rust","archived":false,"fork":false,"pushed_at":"2023-06-21T22:41:29.000Z","size":167,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-24T15:04:56.074Z","etag":null,"topics":["crate","file-traversal","files","filesystem","library","rust"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mantono.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-16T21:34:41.000Z","updated_at":"2023-03-30T05:49:36.000Z","dependencies_parsed_at":"2024-11-14T21:33:53.307Z","dependency_job_id":"304b7519-6a45-4455-80da-4eb5d5ed540b","html_url":"https://github.com/mantono/fwalker","commit_stats":{"total_commits":97,"total_committers":2,"mean_commits":48.5,"dds":0.09278350515463918,"last_synced_commit":"c5efd3ea7e638ee2e4551ce6dd92e7b918c149d3"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mantono/fwalker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantono%2Ffwalker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantono%2Ffwalker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantono%2Ffwalker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantono%2Ffwalker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mantono","download_url":"https://codeload.github.com/mantono/fwalker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantono%2Ffwalker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267632858,"owners_count":24118748,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["crate","file-traversal","files","filesystem","library","rust"],"created_at":"2024-11-30T22:11:55.445Z","updated_at":"2025-07-29T05:04:26.407Z","avatar_url":"https://github.com/mantono.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fwalker:walking:\nA cargo crate for file and directory traversal in a file system through an iterator\n\n![Build \u0026 Test](https://github.com/mantono/fwalker/workflows/Build%20\u0026%20Test/badge.svg?branch=master)\n![Security Audit](https://github.com/mantono/fwalker/workflows/Security%20Audit/badge.svg)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n\n## Documentation\nSee [docs.rs/fwalker](https://docs.rs/fwalker/) for complete documentation and more advanced usage.\n\n## Usage\nAdd crate to Cargo.toml to use it\n\n```toml\n[dependencies]\nfwalker = \"0.4.1\"\n```\n\nThis crate has only one public struct, `fwalker::Walker`. With this struct, files and directories\ncan be iterated over for any kind of listing, manipulation or processing. Creating a new walker can\nbe done with either\n- `fwalker::Walker::new()` - starts from current directory\n- `fwalker::Walker::from(\"/some/path\")` - starts from path `/some/path`\n\nQuick example to get you started\n\n```rust\nuse fwalker::Walker;\nuse std::path::PathBuf;\n\nfn main() {\n    Walker::from(\"/proc/sys\")\n        .expect(\"This *should* work\")\n        .take(10)\n        .for_each(|file: PathBuf| println!(\"{:?}\", file));\n}\n```\n\nwhich would yield the output\n\n```\n\"/proc/sys/abi/vsyscall32\"\n\"/proc/sys/debug/exception-trace\"\n\"/proc/sys/debug/kprobes-optimization\"\n\"/proc/sys/fs/aio-max-nr\"\n\"/proc/sys/fs/aio-nr\"\n\"/proc/sys/fs/dentry-state\"\n\"/proc/sys/fs/dir-notify-enable\"\n\"/proc/sys/fs/file-max\"\n\"/proc/sys/fs/file-nr\"\n\"/proc/sys/fs/inode-nr\"\n```\n\nSee also example in [examples](examples/) directory.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmantono%2Ffwalker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmantono%2Ffwalker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmantono%2Ffwalker/lists"}