C++ Search Software

View 135 business solutions

Browse free open source C++ Search Software and projects below. Use the toggles on the left to filter open source C++ Search Software by OS, license, language, programming language, and project status.

  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • Cloud-based help desk software with ServoDesk Icon
    Cloud-based help desk software with ServoDesk

    Full access to Enterprise features. No credit card required.

    What if You Could Automate 90% of Your Repetitive Tasks in Under 30 Days? At ServoDesk, we help businesses like yours automate operations with AI, allowing you to cut service times in half and increase productivity by 25% - without hiring more staff.
    Try ServoDesk for free
  • 1
    Bowtie, an ultrafast, memory-efficient short read aligner for short DNA sequences (reads) from next-gen sequencers. Please cite: Langmead B, et al. Ultrafast and memory-efficient alignment of short DNA sequences to the human genome. Genome Biol 10:R25.
    Leader badge
    Downloads: 287 This Week
    Last Update:
    See Project
  • 2
    grepwin

    grepwin

    A powerful and fast search tool using regular expressions

    grepWin is a simple search and replace tool which can use regular expressions to do its job. This allows to do much more powerful searches and replaces. Note: project has moved to GitHub https://github.com/stefankueng/grepWin
    Leader badge
    Downloads: 181 This Week
    Last Update:
    See Project
  • 3
    CLucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java. CLucene is faster than lucene as it is written in C++.
    Leader badge
    Downloads: 109 This Week
    Last Update:
    See Project
  • 4
    Locate32

    Locate32

    Locate32 finds files and directories based on file names.

    Locate32 finds files and directories based on file and folder names stored in a database. Locate32 saves to a database the names of all files on your hard drives. Once the file indexing has occurred, you can locate files quickly by using the application's search form. It works like "updatedb" and "locate" commands in Unix. In other words, it uses databases to store information about directory structures and uses these databases in searches. The use of these databases provides very fast searching speed. The software includes a dialog-based application as well as console programs that can be used to update and access the databases. Locate32 is not primarily meant to find text or data within files, but it has a primitive feature to do this.
    Leader badge
    Downloads: 49 This Week
    Last Update:
    See Project
  • Total Network Visibility for Network Engineers and IT Managers Icon
    Total Network Visibility for Network Engineers and IT Managers

    Network monitoring and troubleshooting is hard. TotalView makes it easy.

    This means every device on your network, and every interface on every device is automatically analyzed for performance, errors, QoS, and configuration.
    Learn More
  • 5
    searchmonkey

    searchmonkey

    Powerful desktop search app for Windows, Linux and Mac

    Power searching on your desktop without the pain. Perform powerful desktop searches without having to index your system using regular expressions. Graphical equivalent to find/grep. Available for Windows (JAVA) and Linux (Gnome & KDE) and easy to translate into your locale.
    Leader badge
    Downloads: 46 This Week
    Last Update:
    See Project
  • 6
    Katalog

    Katalog

    Catalog and Search files from permanent or removable drives

    Katalog is a desktop application to manage catalogs of disks and files: - Create catalogs from different sources or devices, - Search files even when the devices are disconnected, and find duplicates or differences - Organize your Collection of catalogs, Storage devices, and Virtual storage devices and get Statistics, - Data is stored in csv (tab separated) files for full control by the user, - Available in multiple languages - OpenSource and cross-platform (Linux Plasma and Windows 64 installer or portable). First use / tips - Simply start with the Create screen. Create your first catalog and experiment! - All data/catalog files are stored in the Settings/Collection folder. Documentation/Wiki: https://stephanecouturier.github.io/Katalog/ Follow Katalog on Facebook: https://www.facebook.com/Katalog-107117844916308 Follow active development: https://github.com/users/StephaneCouturier/projects/7
    Leader badge
    Downloads: 119 This Week
    Last Update:
    See Project
  • 7
    OpenSearchServer Search Engine

    OpenSearchServer Search Engine

    An open source search engine with RESTFul API and crawlers

    OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, etc.) and the client libraries (REST/API , Ruby, Rails, Node.js, PHP, Perl) you will be able to integrate quickly and easily advanced full-text search capabilities in your application: Full-text with basic semantic, join queries, boolean queries, facet and filter, document (PDF, Office, etc.) indexation, web scrapping,etc. OpenSearchServer runs on Windows and Linux/Unix/BSD.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 8
    This tool enables users to search their NTFS formatted harddrives within seconds. It uses the MFT( master file table) of NTFS to search for files very fast. Ermöglicht eine extrem schnelle Dateisuche auf NTFS formatierten Festplatten.
    Leader badge
    Downloads: 7 This Week
    Last Update:
    See Project
  • 9
    disk manager is a CD/DVD archiving tool. It storys the directory contents of any media so you can search it later. Its also designed as file explorer which makes it easy to find big files. Windows Version supports native file context menus.
    Downloads: 3 This Week
    Last Update:
    See Project
  • Desktop and Mobile Device Management Software Icon
    Desktop and Mobile Device Management Software

    It's a modern take on desktop management that can be scaled as per organizational needs.

    Desktop Central is a unified endpoint management (UEM) solution that helps in managing servers, laptops, desktops, smartphones, and tablets from a central location.
    Learn More
  • 10

    bnf2xml

    simple BNF parser makes xml markup of matches

    bnf2xml a simple BNF parser that takes text as input, searches according to a BNF query file, and outputs text marked up by the xml labels that show context. bnf2xml is as simple to use as any text binary ie, awk(1) grep(1). bnf2xml does not require C API because it outputs simple xml labeling. README is visible on file dl page. EXAMPLE: $ echo "hi" | bnf2xml patternfile <word><alph>h</alph><alph>i</alph></word> or <gas>hydrogen iodide</gas> patternfile says how to find needle in haystack and what to show, ie: <alph> ::= a | b | c | d ... <word> ::= <alph>+ bnf2xml is a top down recursive parser. Unlike buttom up parsers like gcc(1) or some top downs, bnf2xml is completely unambiguous / resolves ALL conflicts. Slower on ave. for parsing C or than sed(1) for simple searches. Far easier than using flex/C to create a parser. caveate: I do not suggest it's worth while to make a new gcc(1) using bnf2xml. bnf2xml an nth BETA release, but no complains yet.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 11
    This is a autorun menu for cd's. It link a name with a file and a short description. It can execute/open files, copy directories, execute commands, etc and it is really easy to use. (Spanish)
    Downloads: 2 This Week
    Last Update:
    See Project
  • 12
    Midlet that allows you to send e-mails from MIDP(j2me)-capable device.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 13
    The findstr is searching the words in the text and binary files in several codepages. The famouse 'grep' is very slow and get a lot memory for large binary files without ends of lines - findstr is fast and light, but it doesn't use regular expressions.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 14

    Language-Aware String Extractor

    multi-encoding strings(1) replacement with language identification

    Enhanced version of the standard Unix strings(1) program which uses language models for automatic language identification and character-set identification, supporting over 1400 languages, dozens of character encodings, and 4800+ language/encoding pairs.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15
    AASE(Anarchy Advantage Search Engine) is a search engine that reorders search results with base in the habits of its users. By measuring user activity on the search engine result page the search engine constantly improves the search results.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    DFA library is a regular expression library capable of the classic RE syntax (i.e. - without any perl extension). Unlike many other libraries with similar functionality, a deterministic finite automata (DFA) is used. DFA was formerly called npcre, wh
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    DupLichaSe

    DupLichaSe

    A Fast Duplicate File Detector with graph based semi-automatic cleaner

    DupLichaSe is a very fast Duplicate File Detector that uses inductive heuristics to detect duplicate files very fast; based on content! DupLichaSe stands out from EVERY other Duplicate file detection Software because of it's graph based semi-automatic selection system. ... after finding 100s of duplicate files, do you have to go through some manual and possibly laborious process of deleting the duplicates? ...or is there a way for the Software to learn and do most of it for you in a SAFE and RECOVERABLE MANNER? YES!! There is!! ...This Software will ALSO help you and delete duplicate files, after you must have taken action on a a FEW important files(i.e large files that are duplicates). ++Thanks to its trivial Graph based suggestion System
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    (Production/Stable) High performance multithreaded enterprise solution. Generates 64 bit file CRC snapshots. Uses SQL database for advanced analysis. Suitable for finding duplicate, modified, added, and deleted files across multiple computers and disks.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Exostar LDAP Proxy is a specialized LDAP proxy used to look up X.509 encryption certificates for prospective recipients in secure e-mail applications. It can be used to fetch other types of end user certificates, CA certificates and CRLs
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    Are you disaffected with the slow File-Searching function on Windows operating systems? Even the file-index-service doesn't improve the performance?! Filesearcher will find files, that match user-defined patterns in a few seconds!!
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    Fisoco

    Fisoco

    a Finding, Sorting and Converting free software (file manipulation)

    The aim of this project is to develop, in the cleanest way (respecting GNU standards and portability), a C++ GUI program, named Fisoco, permetting to users to organize their files (particularly music, for instance) at home. You will be able to locate files on the system, to delete them, to move them, to convert them, to rename them, etc. Fisoco means FInding, SOrting and COnverting. It is perhaps not the final name, but it sounds well to me. Its development is progressing slowly, as the developper learn how does work C++ and gtkmm.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Creates a file list from files with extensions given by user. Searches within all folders given by user.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    GLScube is an Augmented File System designed to offer a rich interface to the users' data, and pull, both end-users and developers, from thinking about Where a Document is to What a Document is about.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    A simple full text search tool that finds files matching a search expression in a directory tree.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    HereItIs is an application for Linux/KDE designed to create catalogs of computer media collections. Meta information, full text and thumbnails are extracted from documents, images, mp3 and other media allowing immediate and accurate information retrieval
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • 3
  • 4
  • Next