Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrkspln/localhostsearch
an app for directory's files search; app uses static library
https://github.com/chrkspln/localhostsearch
Last synced: about 2 months ago
JSON representation
an app for directory's files search; app uses static library
- Host: GitHub
- URL: https://github.com/chrkspln/localhostsearch
- Owner: chrkspln
- Created: 2024-02-18T15:20:31.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-18T22:50:57.000Z (11 months ago)
- Last Synced: 2024-02-19T16:34:51.538Z (11 months ago)
- Language: C++
- Size: 2.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Application (App) to find file on Local Host:
functionality:
1. App has to find file by "name".
2. Search has to be started from disk "C:\" on Windows
3. To make this search faster App creates new Searching Thread for each sub-directory in root directory, but ~~not~~ more than 8 Execution Threads.
4. Thread who will find needed file has to print Full Path to the file and
has to notify all the rest threads to stop searching.
- Logic "to search file" has to be placed into static library.
- Application just uses this library to find files in a fast way.configuration:
Static Library compilation has to be done separately from Application.
Compiler: GCC or G++.
- Use Makefile for compilation/linking instructions.
=======
Things to Google: (Concurrency, Makefile, GCC, Static Library)