I need to create an application that browse directories (files) on a PC and make a list of them (path of each files).
Since later I need to randomly re-order this list, I want to store it in a data structure fast and easy to recall and manage (i.e. I don't want to browse the PC file list every time I open the application).
So, once scanned, storing the list and use it until I don't scan PC again (now, and in the future when I'll need to use this application).
What's the best data storage for this kind of application?
Since I don't have any database, data must be stored in the application I guess (or at least on some data-file inside the directory of the application). I believe .txt
file is slow and terrible :)
What can you suggest? I think I'll use Windows Form. SQLite?