{"id":19167380,"url":"https://github.com/aditya-a-garwal/ag_file_system_scanner","last_synced_at":"2025-08-10T11:04:34.472Z","repository":{"id":64039853,"uuid":"568430787","full_name":"Aditya-A-garwal/ag_file_system_scanner","owner":"Aditya-A-garwal","description":"A nifty command line tool to scan and search through the filesystem and get the sizes of directories ","archived":false,"fork":false,"pushed_at":"2022-12-15T14:28:41.000Z","size":27,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-09T03:14:34.165Z","etag":null,"topics":["chrono","filesystem","filesystem-library","rust"],"latest_commit_sha":null,"homepage":"","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/Aditya-A-garwal.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}},"created_at":"2022-11-20T14:12:20.000Z","updated_at":"2024-08-09T17:52:10.000Z","dependencies_parsed_at":"2023-01-14T19:45:48.772Z","dependency_job_id":null,"html_url":"https://github.com/Aditya-A-garwal/ag_file_system_scanner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Aditya-A-garwal/ag_file_system_scanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya-A-garwal%2Fag_file_system_scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya-A-garwal%2Fag_file_system_scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya-A-garwal%2Fag_file_system_scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya-A-garwal%2Fag_file_system_scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aditya-A-garwal","download_url":"https://codeload.github.com/Aditya-A-garwal/ag_file_system_scanner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya-A-garwal%2Fag_file_system_scanner/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269713883,"owners_count":24463244,"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-08-10T02:00:08.965Z","response_time":71,"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":["chrono","filesystem","filesystem-library","rust"],"created_at":"2024-11-09T09:37:03.858Z","updated_at":"2025-08-10T11:04:34.400Z","avatar_url":"https://github.com/Aditya-A-garwal.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ag_file_system_scanner\n\n[![GitHub issues](https://img.shields.io/github/issues/Aditya-A-garwal/ag_file_system_scanner)](https://github.com/Aditya-A-garwal/ag_file_system_scanner/issues)\n[![GitHub forks](https://img.shields.io/github/forks/Aditya-A-garwal/ag_file_system_scanner)](https://github.com/Aditya-A-garwal/ag_file_system_scanner/network)\n[![GitHub stars](https://img.shields.io/github/stars/Aditya-A-garwal/ag_file_system_scanner)](https://github.com/Aditya-A-garwal/ag_file_system_scanner/stargazers)\n[![GitHub license](https://img.shields.io/github/license/Aditya-A-garwal/ag_file_system_scanner)](https://github.com/Aditya-A-garwal/ag_file_system_scanner)\n\nThis is a high performance, nifty, command-line tool written in rust to navigate through the filesystem. It can be used to -\n\n- Find Directories, Symlinks and Files by their full/partial name.\n- Find the sizes of Directories recursively.\n- Find permissions of Filesystem Entries (POSIX-style permissions only).\n- General Navigation and exploration of the filesystem through the command-line.\n\nIt is a successor to [AgFileSystemScanner](https://github.com/Aditya-A-garwal/AgFileSystemScanner), which is the same tool written in C++. Rust was used over C++ due to its verbose, compile-time error handling. Exceptions are not present in rust, which reduces the chances of crashes happening.\n\n## Usage\n\n    fss [PATH] [options] [-r [DEPTH]] [-S|--search|--search-noext|--contains PATTERN]\n\n## Options\n\n    -r, --recursive             Recursively scan directories (can be followed by a positive integer to indicate the depth)\n    -p, --permissions           Show permissions of all entries\n    -t, --modification-time     Show time of last modification of entries\n\n    -f, --files                 Show Regular Files (normally hidden)\n    -l, --symlinks              Show Symlinks (normally hidden)\n    -s, --special               Show Special Files such as sockets, pipes, etc. (normally hidden)\n\n    -d, --dir-size              Recursively calculate and display the size of each directory\n\n    -a, --abs                   Show the absolute path of each entry without any indentation\n\n    -S, --search                Only show entries whose name completely matches the following string completely\n        --search-noext          Only show entries whose name(except for the extension) completely matches the following string completely\n        --contains              Only show entries whose name contains the following string completely\n\n    -e, --show-err              Show errors\n    -h, --help                  Print Usage Instructions\n\n```PATH``` is the path to the directory from which to start the scan.\n\nOnly one of the search options(```-S```, ```--search```, ```--search-noext```, ```--contains```) can be set at a time.\n\nThe argument after the search flag is treated as the search pattern.\n\n## Examples\n\nPrint the directories in the current directory, recursively going down two levels -\n\n    fss -r 2\n\nPrint the contents of ```/proc```, including files, symlinks and special files with their permissions -\n\n    fss \"/proc\" -f -l -s -p\n\nRecursively search for all directories named ```proc``` in ```C://``` and show their sizes, last modification times -\n\n    fss \"C:/\" -r -d -t -S \"proc\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya-a-garwal%2Fag_file_system_scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faditya-a-garwal%2Fag_file_system_scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya-a-garwal%2Fag_file_system_scanner/lists"}