Text file management software

2

Is there a software which can tag plain text files, organize and index them like Calibre and provide extensive content searching (I can search the content of the text files)?

user

Posted 2011-05-05T03:39:36.200

Reputation: 1 853

Question was closed 2015-09-16T17:42:48.007

1I want total text file management software like calibre, not just searching or indexing software. – user – 2011-05-05T06:48:20.510

I know, that's why I haven't closed the question. – Sathyajith Bhat – 2011-05-05T07:47:26.797

Doesn't Calibre support tagging, organising and indexing of plain text files? The Calibre FAQ lists TXT as one of the formats it can convert to/from.

– RedGrittyBrick – 2011-05-05T09:22:50.693

I will give it a try – user – 2011-05-05T11:36:37.130

Answers

2

I am tempted to say SQLite with the FTS4 full text search extension (standard).

CREATE VIRTUAL TABLE text_files USING FTS4(file_id INTEGER PRIMARY KEY, file_content BLOB);
CREATE TABLE text_information(file_id INTEGER REFERENCES text_files(file_id), file_path TEXT, file_size INTEGER, whatever_you_want…);

With some C program it is easy to store a file into your database. Then a simple query performs full text search (syntax)

SELECT * FROM text_files WHERE file_content MATCH 'hello';

Benoit

Posted 2011-05-05T03:39:36.200

Reputation: 6 563

I am looking for more of a software, not building it on my own – user – 2011-05-05T06:35:49.220