Click here to Skip to main content
15,890,825 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: (untagged)
I am looking to develop an application that will:

- Build a browsable index of all files contained within a directory and display file information (file type, size, date created, etc.)
- Read the contents of all the files in the directory and build a searchable index which can be distributed with the files for fast searching by keyword
- The files will be a variety of formats: .txt, .pdf, .doc, .XML, etc.

It must be fast, simple for the end-user to use and it must be able to handle huge amounts of files.

Opinions on the best language to accomplish these goals?

What I have tried:

I haven't tried anything yet - still in the research stage.
Posted
Updated 21-May-20 2:54am

Quote:
the best language to accomplish these goals?

The one you know best.

Almost any language can do that, so it's pretty much entirely up to you and what you are experienced with.
We can't help you decide that - we have no idea of your educational background or skill set.
 
Share this answer
 
Given the different file types you want to process, you will need access to libraries that allow you to read the different file types. There are a number of different .NET libraries around that can do it, so C# or VB.NET would be a reasonable choice. Alternatively Python can certainly handle a number of them but you would need to check for yourself.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900