bgotest / filefinder
File finder by content and additional search features
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bgotest/filefinder
This package is not auto-updated.
Last update: 2025-12-20 07:12:58 UTC
README
File finder is simple search package for finding .txt files by content in all directories or specific ones.
Installation
- Publish Assets and Default files content
$ php artisan vendor:publish --tag=public --force
-
FineFinderService provider is loaded automatically by laravel autodiscovery if version >= 5.5
-
Testing demo after installation : http://example.com/file-finder-demo
-
Ignored folders for searching files - vendor, node_modules, bower_components
Demo image
Results
{ "searchedString": "lore", "searchedFilesCount": 5, "foundFilesCount": 3, "files": [ { "name": "text_file.txt", "directory": "my_custom_folder", "pathName": "my_custom_folder", "extension": "txt", "size": 2019, "positionString": 8 }, { "name": "text_file2.txt", "directory": "my_custom_folder", "pathName": "my_custom_folder", "extension": "txt", "size": 2019, "positionString": 8 }, { "name": "text_file3.txt", "directory": "my_custom_folder", "pathName": "my_custom_folder", "extension": "txt", "size": 2019, "positionString": 8 } ] }
